diff options
author | Ekaterina Vaartis <vaartis@kotobank.ch> | 2022-12-25 01:46:57 +0300 |
---|---|---|
committer | Ekaterina Vaartis <vaartis@kotobank.ch> | 2022-12-25 01:46:57 +0300 |
commit | 60692b4e45649612bea131671b01d7739cb2c50b (patch) | |
tree | 694802adf51900a24cfe3f32ce0e4f3ede5d37fc /editor/editor_properties_array_dict.h | |
parent | f382a2b59bb9606f958ccaf7be7ac98f45607c9f (diff) | |
download | redot-engine-60692b4e45649612bea131671b01d7739cb2c50b.tar.gz |
Implement export_multiline support for Array[String] and Dictionary
For arrays, specifically check if it's a string array and pass the
type on to the editor. For dictionaries, save the hint on the type and
use it later to draw the multiline editor, except for when adding a
string key, because that doesn't make much sense. All string values
however will be drawn as multiline.
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 ae61418528..68fb2f5f59 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(); }; |