diff options
author | Valentin Cocaud <v.cocaud@gmail.com> | 2024-02-14 14:14:21 +0100 |
---|---|---|
committer | Valentin Cocaud <v.cocaud@gmail.com> | 2024-06-04 16:51:29 +0200 |
commit | c31111f5ece9d62557a10c374d3f437e966723fa (patch) | |
tree | d3c3e8e3903754c5d7e98cded77aa668a361aa09 /editor/editor_inspector.cpp | |
parent | 7b63ac488e6e27b1d712bbd6b55afae46c0028ff (diff) | |
download | redot-engine-c31111f5ece9d62557a10c374d3f437e966723fa.tar.gz |
Editor: Focus value editor on type change in Dictionary and Array editors
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r-- | editor/editor_inspector.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 80e2302e91..33f460e23d 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -652,6 +652,19 @@ void EditorProperty::add_focusable(Control *p_control) { focusables.push_back(p_control); } +void EditorProperty::grab_focus(int p_focusable) { + if (focusables.is_empty()) { + return; + } + + if (p_focusable >= 0) { + ERR_FAIL_INDEX(p_focusable, focusables.size()); + focusables[p_focusable]->grab_focus(); + } else { + focusables[0]->grab_focus(); + } +} + void EditorProperty::select(int p_focusable) { bool already_selected = selected; if (!selectable) { |