diff options
author | Marius Hanl <mariushanl@web.de> | 2024-08-31 19:23:34 +0200 |
---|---|---|
committer | Marius Hanl <mariushanl@web.de> | 2024-08-31 21:10:27 +0200 |
commit | 74f64aaf98beba74c8c7eedac152c4a50b336994 (patch) | |
tree | 3b884a8e71557a9846e8944b46deb1d9b04f4f4b /editor/create_dialog.h | |
parent | 61598c5c88d95b96811d386cb20d714c35f4c6d7 (diff) | |
download | redot-engine-74f64aaf98beba74c8c7eedac152c4a50b336994.tar.gz |
Use InputMap actions consistently across all LineEdit's that filter an underlying Tree or ItemList.
- Instead of checking for Key::UP, Key::DOWN, Key::PAGEUP, Key::PAGEDOWN etc., we rather check for the action like 'ui_up' or 'ui_down'.
- Also use AcceptDialog's 'register_text_enter' functionality to consistently close a dialog when ENTER is pressed while the LineEdit has focus (instead of redirecting ENTER keys to e.g. the underlying Tree).
- Unify the LineEdit filter behavior for the SceneTreeDialog and corresponding usages
- Improve OK Button disablement (something should be selected)
Diffstat (limited to 'editor/create_dialog.h')
-rw-r--r-- | editor/create_dialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/create_dialog.h b/editor/create_dialog.h index d2866e9f04..e2b1b7b34b 100644 --- a/editor/create_dialog.h +++ b/editor/create_dialog.h @@ -77,7 +77,7 @@ class CreateDialog : public ConfirmationDialog { void _fill_type_list(); void _cleanup(); - void _sbox_input(const Ref<InputEvent> &p_ie); + void _sbox_input(const Ref<InputEvent> &p_event); void _text_changed(const String &p_newtext); void select_type(const String &p_type, bool p_center_on_item = true); void _item_selected(); |