mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
f6f62d7ff6
The scrollback is really a property of the view, not the terminal.
52 lines
1.1 KiB
Plaintext
52 lines
1.1 KiB
Plaintext
@GUI::Widget {
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [10]
|
|
spacing: 5
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
title: "Bell mode"
|
|
preferred_height: "fit"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [8]
|
|
spacing: 8
|
|
}
|
|
|
|
@GUI::Widget {
|
|
preferred_height: "fit"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
spacing: 4
|
|
}
|
|
|
|
@GUI::RadioButton {
|
|
name: "beep_bell_radio"
|
|
text: "Audible bell"
|
|
}
|
|
|
|
@GUI::RadioButton {
|
|
name: "visual_bell_radio"
|
|
text: "Visible bell"
|
|
}
|
|
|
|
@GUI::RadioButton {
|
|
name: "no_bell_radio"
|
|
text: "No bell"
|
|
}
|
|
}
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
title: "Exit behavior"
|
|
preferred_height: "fit"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [8]
|
|
}
|
|
|
|
@GUI::CheckBox {
|
|
name: "terminal_confirm_close"
|
|
text: "Confirm exit when process is active"
|
|
}
|
|
}
|
|
}
|