summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-12-09 07:34:29 +0100
committerGitHub <noreply@github.com>2022-12-09 07:34:29 +0100
commit2d02cb67ee904b7614a6a5396669c575193fb73f (patch)
treef4fe45b7e7572b812331330b3a4ca8b4a8f22760 /core
parent36763f65e6b56b11f1f3e96ed7103304cce76532 (diff)
parent885f2a4eca0f348e8d04e45e6e9a0e950f4c6964 (diff)
Merge pull request #69661 from Mickeon/fix-editor-cannot-disconnect-signal
Fix unable to disconnect signal in Editor once created
Diffstat (limited to 'core')
-rw-r--r--core/object/object.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object/object.h b/core/object/object.h
index 3ad8391dd6..446550f91f 100644
--- a/core/object/object.h
+++ b/core/object/object.h
@@ -556,6 +556,7 @@ public:
CONNECT_PERSIST = 2, // hint for scene to save this connection
CONNECT_ONE_SHOT = 4,
CONNECT_REFERENCE_COUNTED = 8,
+ CONNECT_INHERITED = 16, // Used in editor builds.
};
struct Connection {