summaryrefslogtreecommitdiffstats
path: root/editor/editor_inspector.cpp
diff options
context:
space:
mode:
authorValentin Cocaud <v.cocaud@gmail.com>2024-02-14 14:14:21 +0100
committerValentin Cocaud <v.cocaud@gmail.com>2024-06-04 16:51:29 +0200
commitc31111f5ece9d62557a10c374d3f437e966723fa (patch)
treed3c3e8e3903754c5d7e98cded77aa668a361aa09 /editor/editor_inspector.cpp
parent7b63ac488e6e27b1d712bbd6b55afae46c0028ff (diff)
downloadredot-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.cpp13
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) {