summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-01-13 18:01:55 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-01-13 18:01:55 +0100
commit4c2dea108e7abcc79a0bff4a988bbffcf64a3153 (patch)
tree7b9eaa92b6e23c7a9a81e09309fc9e11d694fd70 /editor/editor_properties.cpp
parent787179dac82b970c0861290991826e8ea860b178 (diff)
parent60692b4e45649612bea131671b01d7739cb2c50b (diff)
downloadredot-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.cpp')
-rw-r--r--editor/editor_properties.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp
index 8ef394a59f..6c917a0c4f 100644
--- a/editor/editor_properties.cpp
+++ b/editor/editor_properties.cpp
@@ -4584,6 +4584,7 @@ EditorProperty *EditorInspectorDefaultPlugin::get_editor_for_property(Object *p_
return editor;
} else {
EditorPropertyDictionary *editor = memnew(EditorPropertyDictionary);
+ editor->setup(p_hint);
return editor;
}
} break;