Merge pull request #86654 from ryevdokimov/fix-listening-for-input-escape

Prevent escape key from closing Editor Settings window when filtering for shortcuts
This commit is contained in:
Rémi Verschelde 2024-02-02 12:01:52 +01:00
commit 8fc2407085
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -773,6 +773,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);