Skip to content

Commit

Permalink
Prevent escape key from closing Editor Settings window when filtering…
Browse files Browse the repository at this point in the history
… for shorcuts
  • Loading branch information
ryevdokimov committed Jan 6, 2024
1 parent 13a0d6e commit eb56578
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions editor/editor_settings_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,8 @@ EditorSettingsDialog::EditorSettingsDialog() {
shortcut_search_by_event->set_stretch_ratio(0.75);
shortcut_search_by_event->set_allowed_input_types(INPUT_KEY);
shortcut_search_by_event->connect("event_changed", callable_mp(this, &EditorSettingsDialog::_filter_shortcuts_by_event));
shortcut_search_by_event->connect("focus_entered", callable_mp((AcceptDialog *)this, &AcceptDialog::set_close_on_escape).bind(false));
shortcut_search_by_event->connect("focus_exited", callable_mp((AcceptDialog *)this, &AcceptDialog::set_close_on_escape).bind(true));
top_hbox->add_child(shortcut_search_by_event);

Button *clear_all_search = memnew(Button);
Expand Down

0 comments on commit eb56578

Please sign in to comment.