diff options
author | Micky <micheledevita2@gmail.com> | 2023-09-16 20:12:30 +0200 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2023-09-16 21:46:00 +0200 |
commit | 4471e7fe92d1c47e5aac94c3a50e6c6752198ebd (patch) | |
tree | 0ec5cf0a76b98826ca39772ae9868c5834298cc5 /editor/connections_dialog.cpp | |
parent | 5f1e56ff26be4070496aa51095b9ac2f2b4f4ed8 (diff) | |
download | redot-engine-4471e7fe92d1c47e5aac94c3a50e6c6752198ebd.tar.gz |
Fix Connection dock's popups always allowing disconnect
Diffstat (limited to 'editor/connections_dialog.cpp')
-rw-r--r-- | editor/connections_dialog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/connections_dialog.cpp b/editor/connections_dialog.cpp index 11fc5efd62..c73219744d 100644 --- a/editor/connections_dialog.cpp +++ b/editor/connections_dialog.cpp @@ -1213,6 +1213,11 @@ void ConnectionsDock::_rmb_pressed(const Ref<InputEvent> &p_event) { return; } + if (item->is_selectable(0)) { + // Update selection now, before `about_to_popup` signal. Needed for SIGNAL and CONNECTION context menus. + tree->set_selected(item); + } + Vector2 screen_position = tree->get_screen_position() + mb_event->get_position(); switch (_get_item_type(*item)) { |