1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-03 16:55:53 +00:00

Fix UI focus being shown when it shouldn't

This commit is contained in:
Michael Alexsander
2025-10-07 12:05:34 -03:00
parent 06faefc9f4
commit e32b9274a3
7 changed files with 39 additions and 16 deletions

View File

@@ -515,7 +515,7 @@ void GroupsEditor::_confirm_add() {
undo_redo->add_undo_method(SceneTreeDock::get_singleton()->get_tree_editor(), "update_tree");
undo_redo->commit_action();
tree->grab_focus();
tree->grab_focus(true);
}
void GroupsEditor::_confirm_rename() {
@@ -566,7 +566,7 @@ void GroupsEditor::_confirm_rename() {
undo_redo->commit_action();
tree->grab_focus();
tree->grab_focus(true);
}
void GroupsEditor::_confirm_delete() {
@@ -606,7 +606,7 @@ void GroupsEditor::_confirm_delete() {
undo_redo->add_undo_method(this, "_update_tree");
undo_redo->commit_action();
tree->grab_focus();
tree->grab_focus(true);
}
void GroupsEditor::_show_add_group_dialog() {