diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-13 18:01:55 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-13 18:01:55 +0100 |
commit | 4c2dea108e7abcc79a0bff4a988bbffcf64a3153 (patch) | |
tree | 7b9eaa92b6e23c7a9a81e09309fc9e11d694fd70 /editor/editor_properties_array_dict.h | |
parent | 787179dac82b970c0861290991826e8ea860b178 (diff) | |
parent | 60692b4e45649612bea131671b01d7739cb2c50b (diff) | |
download | redot-engine-4c2dea108e7abcc79a0bff4a988bbffcf64a3153.tar.gz |
Merge pull request #70540 from vaartis/multiline-arrays-dictionaries
Implement export_multiline support for Array[String] and Dictionary
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 96fc2dce24..73a16e3687 100644 --- a/editor/editor_properties_array_dict.h +++ b/editor/editor_properties_array_dict.h @@ -154,6 +154,7 @@ class EditorPropertyDictionary : public EditorProperty { EditorSpinSlider *size_sliderv = nullptr; Button *button_add_item = nullptr; EditorPaginator *paginator = nullptr; + PropertyHint property_hint; void _page_changed(int p_page); void _edit_pressed(); @@ -169,6 +170,7 @@ protected: void _notification(int p_what); public: + void setup(PropertyHint p_hint); virtual void update_property() override; EditorPropertyDictionary(); }; |