diff options
author | Saracen <SaracenOne@gmail.com> | 2023-10-05 18:51:08 +0100 |
---|---|---|
committer | Saracen <SaracenOne@gmail.com> | 2023-10-05 19:10:51 +0100 |
commit | 054934fde35760c12f1aa966ced5a9663943a854 (patch) | |
tree | a0a417d80b61c39e9f09182fa0deb8f3889bbaba /editor/connections_dialog.cpp | |
parent | 0ca8542329888e8dccba89d59d3b728090c29991 (diff) | |
download | redot-engine-054934fde35760c12f1aa966ced5a9663943a854.tar.gz |
Disable disconnect button for inherited signals
Diffstat (limited to 'editor/connections_dialog.cpp')
-rw-r--r-- | editor/connections_dialog.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/connections_dialog.cpp b/editor/connections_dialog.cpp index 208253d617..6c79f2d2d0 100644 --- a/editor/connections_dialog.cpp +++ b/editor/connections_dialog.cpp @@ -1026,7 +1026,9 @@ void ConnectionsDock::_tree_item_selected() { } else if (item && _get_item_type(*item) == TREE_ITEM_TYPE_CONNECTION) { connect_button->set_text(TTR("Disconnect")); connect_button->set_icon(get_editor_theme_icon(SNAME("Unlinked"))); - connect_button->set_disabled(false); + + Object::Connection connection = item->get_metadata(0); + connect_button->set_disabled(_is_connection_inherited(connection)); } else { connect_button->set_text(TTR("Connect...")); connect_button->set_icon(get_editor_theme_icon(SNAME("Instance"))); |