diff options
author | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2022-12-21 12:48:59 +0100 |
---|---|---|
committer | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2022-12-21 12:48:59 +0100 |
commit | 3238d1124769eb2f07feada339ea50e026f0bb68 (patch) | |
tree | 799c169b76191677b588fbabb37f3268833264cf /editor/project_settings_editor.h | |
parent | 63f95c0e58e51ec2939e8b47803cb607fb35cadc (diff) | |
download | redot-engine-3238d1124769eb2f07feada339ea50e026f0bb68.tar.gz |
Fix closing project setting window with ESC while listening for input
This is done by disallowing ESC to be used for closing the window
while the filter-LineEdit is focused.
Diffstat (limited to 'editor/project_settings_editor.h')
-rw-r--r-- | editor/project_settings_editor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/project_settings_editor.h b/editor/project_settings_editor.h index 7f6dd1b692..1687be47fb 100644 --- a/editor/project_settings_editor.h +++ b/editor/project_settings_editor.h @@ -107,6 +107,9 @@ class ProjectSettingsEditor : public AcceptDialog { void _update_action_map_editor(); void _update_theme(); + void _input_filter_focused(); + void _input_filter_unfocused(); + protected: void _notification(int p_what); static void _bind_methods(); |