summaryrefslogtreecommitdiffstats
path: root/editor/editor_inspector.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-05-19 11:30:49 +0200
committerkobewi <kobewi4e@gmail.com>2024-05-19 12:44:30 +0200
commitba96affd6c17dcd3adecfdd150b49d7851d028e8 (patch)
tree60bcf408efa49947749102d52bb56ce3856ad775 /editor/editor_inspector.cpp
parentdaa81bbb7d1c6d75d1711595604178ee62a5801d (diff)
downloadredot-engine-ba96affd6c17dcd3adecfdd150b49d7851d028e8.tar.gz
Disable follow focus while updating inspector
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r--editor/editor_inspector.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp
index 8e608fb797..7c5e3877f2 100644
--- a/editor/editor_inspector.cpp
+++ b/editor/editor_inspector.cpp
@@ -2727,6 +2727,8 @@ void EditorInspector::update_tree() {
// TODO: Can be useful to store more context for the focusable, such as the caret position in LineEdit.
StringName current_selected = property_selected;
int current_focusable = -1;
+ // Temporarily disable focus following to avoid jumping while the inspector is updating.
+ set_follow_focus(false);
if (property_focusable != -1) {
// Check that focusable is actually focusable.
@@ -3482,6 +3484,7 @@ void EditorInspector::update_tree() {
// Updating inspector might invalidate some editing owners.
EditorNode::get_singleton()->hide_unused_editors();
}
+ set_follow_focus(true);
}
void EditorInspector::update_property(const String &p_prop) {