diff options
author | kobewi <kobewi4e@gmail.com> | 2022-08-18 16:08:30 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-08-18 16:09:21 +0200 |
commit | ebecd148fe7abeebfbe2daee7eedd49e7b744763 (patch) | |
tree | 9d631da024b3744053389d26edae1631f046d366 /editor/connections_dialog.h | |
parent | 03dc8c5d6fc4a1cc8c0b8b329ae53a3d0d8b3074 (diff) | |
download | redot-engine-ebecd148fe7abeebfbe2daee7eedd49e7b744763.tar.gz |
Add "Copy Name" option to signal menu
Diffstat (limited to 'editor/connections_dialog.h')
-rw-r--r-- | editor/connections_dialog.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/connections_dialog.h b/editor/connections_dialog.h index d141d1a880..14da06ccb3 100644 --- a/editor/connections_dialog.h +++ b/editor/connections_dialog.h @@ -177,13 +177,14 @@ class ConnectionsDock : public VBoxContainer { //Right-click Pop-up Menu Options. enum SignalMenuOption { CONNECT, - DISCONNECT_ALL + DISCONNECT_ALL, + COPY_NAME, }; enum SlotMenuOption { EDIT, GO_TO_SCRIPT, - DISCONNECT + DISCONNECT, }; Node *selected_node = nullptr; |