ladybird/Userland/Applications/TerminalSettings/TerminalSettingsMain.gml
Andreas Kling f6f62d7ff6 TerminalSettings: Move scrollback settings from "Terminal" to "View"
The scrollback is really a property of the view, not the terminal.
2023-03-03 15:38:59 +01:00

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"
}
}
}