summaryrefslogtreecommitdiffstats
path: root/editor/editor_dock_manager.cpp
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-05-14 14:13:31 +0200
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-05-30 22:54:04 +0200
commit755a0efbb66ce40ec7399103b34094e734bf09bf (patch)
tree909dabab0f5c7339299955c9e772525c585ce774 /editor/editor_dock_manager.cpp
parent505da68b261be6ed37b42422c61358ff9d208748 (diff)
downloadredot-engine-755a0efbb66ce40ec7399103b34094e734bf09bf.tar.gz
[Scene] Add `SceneStringNames::id_pressed`
Diffstat (limited to 'editor/editor_dock_manager.cpp')
-rw-r--r--editor/editor_dock_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_dock_manager.cpp b/editor/editor_dock_manager.cpp
index 5d98fefa76..ccb47220db 100644
--- a/editor/editor_dock_manager.cpp
+++ b/editor/editor_dock_manager.cpp
@@ -838,7 +838,7 @@ EditorDockManager::EditorDockManager() {
docks_menu = memnew(PopupMenu);
docks_menu->set_hide_on_item_selection(false);
- docks_menu->connect("id_pressed", callable_mp(this, &EditorDockManager::_docks_menu_option));
+ docks_menu->connect(SceneStringName(id_pressed), callable_mp(this, &EditorDockManager::_docks_menu_option));
EditorNode::get_singleton()->get_gui_base()->connect(SceneStringName(theme_changed), callable_mp(this, &EditorDockManager::_update_docks_menu));
}