1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Merge pull request #113296 from KoBeWi/soft_open_gently

Fix dock opening focus
This commit is contained in:
Rémi Verschelde
2025-12-05 09:38:08 +01:00
4 changed files with 11 additions and 5 deletions

View File

@@ -111,7 +111,7 @@ EditorDock::EditorDock() {
void EditorDock::open() {
if (!is_open) {
EditorDockManager::get_singleton()->open_dock(this);
EditorDockManager::get_singleton()->open_dock(this, false);
}
}