diff options
author | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2018-06-18 22:24:31 +0300 |
---|---|---|
committer | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2018-06-18 22:24:31 +0300 |
commit | 8ecef3496ceca62dc5536ae2cf97cd2b05f0f4e6 (patch) | |
tree | 3bb56c81ca7f5b2eb178430f9e95c91f9213b069 /editor/editor_properties_array_dict.h | |
parent | e19da5ab6ac1acd965842c5deaa329dad8ea3299 (diff) | |
download | redot-engine-8ecef3496ceca62dc5536ae2cf97cd2b05f0f4e6.tar.gz |
Add proper type information to array property
Part of #19158
Diffstat (limited to 'editor/editor_properties_array_dict.h')
-rw-r--r-- | editor/editor_properties_array_dict.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_properties_array_dict.h b/editor/editor_properties_array_dict.h index 7f6203ee88..75c67d280d 100644 --- a/editor/editor_properties_array_dict.h +++ b/editor/editor_properties_array_dict.h @@ -62,6 +62,7 @@ class EditorPropertyArray : public EditorProperty { EditorSpinSlider *length; EditorSpinSlider *page; HBoxContainer *page_hb; + Variant::Type array_type; void _page_changed(double p_page); void _length_changed(double p_page); @@ -75,6 +76,7 @@ protected: void _notification(int p_what); public: + void setup(Variant::Type p_array_type); virtual void update_property(); EditorPropertyArray(); }; |