Fix @export_multiline for PackedStringArray

This commit is contained in:
kobewi
2023-02-04 13:53:22 +01:00
parent 0b1d516f67
commit 2b71ede967
3 changed files with 9 additions and 2 deletions

View File

@@ -4593,7 +4593,7 @@ EditorProperty *EditorInspectorDefaultPlugin::get_editor_for_property(Object *p_
} break;
case Variant::PACKED_STRING_ARRAY: {
EditorPropertyArray *editor = memnew(EditorPropertyArray);
editor->setup(Variant::PACKED_STRING_ARRAY);
editor->setup(Variant::PACKED_STRING_ARRAY, p_hint_text);
return editor;
} break;
case Variant::PACKED_VECTOR2_ARRAY: {