mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-25 18:58:56 +00:00
TerminalSettings: Use correct name for the automark_off
radio button
This was causing a segfault when opening the Terminal Settings window.
This commit is contained in:
parent
b680c29923
commit
1df31e426d
Notes:
sideshowbarker
2024-07-16 22:54:10 +09:00
Author: https://github.com/tcl3
Commit: 1df31e426d
Pull-request: https://github.com/SerenityOS/serenity/pull/23107
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ ErrorOr<void> MainWidget::setup()
|
||||||
auto& beep_bell_radio = *find_descendant_of_type_named<GUI::RadioButton>("beep_bell_radio");
|
auto& beep_bell_radio = *find_descendant_of_type_named<GUI::RadioButton>("beep_bell_radio");
|
||||||
auto& visual_bell_radio = *find_descendant_of_type_named<GUI::RadioButton>("visual_bell_radio");
|
auto& visual_bell_radio = *find_descendant_of_type_named<GUI::RadioButton>("visual_bell_radio");
|
||||||
auto& no_bell_radio = *find_descendant_of_type_named<GUI::RadioButton>("no_bell_radio");
|
auto& no_bell_radio = *find_descendant_of_type_named<GUI::RadioButton>("no_bell_radio");
|
||||||
auto& automark_off_radio = *find_descendant_of_type_named<GUI::RadioButton>("automark_of");
|
auto& automark_off_radio = *find_descendant_of_type_named<GUI::RadioButton>("automark_off");
|
||||||
auto& automark_on_interactive_prompt_radio = *find_descendant_of_type_named<GUI::RadioButton>("automark_on_interactive_prompt");
|
auto& automark_on_interactive_prompt_radio = *find_descendant_of_type_named<GUI::RadioButton>("automark_on_interactive_prompt");
|
||||||
|
|
||||||
m_bell_mode = parse_bell(Config::read_string("Terminal"sv, "Window"sv, "Bell"sv));
|
m_bell_mode = parse_bell(Config::read_string("Terminal"sv, "Window"sv, "Bell"sv));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue