diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-11-21 22:10:27 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-11-21 22:10:58 -0300 |
commit | a2a606794c7d29452a59eee1eab07213827654a0 (patch) | |
tree | 2008a901b6e52756dc91dbf2d4b62a39df7480a3 /editor/editor_properties_array_dict.h | |
parent | 9e628264b68205f8d003223a5abff574389354ee (diff) | |
download | redot-engine-a2a606794c7d29452a59eee1eab07213827654a0.tar.gz |
Ensure array and dict editors show edited object IDs, fixes #20225
Diffstat (limited to 'editor/editor_properties_array_dict.h')
-rw-r--r-- | editor/editor_properties_array_dict.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_properties_array_dict.h b/editor/editor_properties_array_dict.h index d2bd849f30..d5eecd9106 100644 --- a/editor/editor_properties_array_dict.h +++ b/editor/editor_properties_array_dict.h @@ -101,6 +101,8 @@ class EditorPropertyArray : public EditorProperty { void _change_type(Object *p_button, int p_index); void _change_type_menu(int p_index); + void _object_id_selected(const String &p_property, ObjectID p_id); + protected: static void _bind_methods(); void _notification(int p_what); @@ -134,6 +136,7 @@ class EditorPropertyDictionary : public EditorProperty { void _change_type_menu(int p_index); void _add_key_value(); + void _object_id_selected(const String &p_property, ObjectID p_id); protected: static void _bind_methods(); |