diff options
author | Hendrik Brucker <hendrik.brucker@mail.de> | 2021-10-01 02:52:44 +0200 |
---|---|---|
committer | Hendrik Brucker <hendrik.brucker@mail.de> | 2021-10-01 02:52:44 +0200 |
commit | 8dd8630c25f0f65ca057a8482aabb20448907312 (patch) | |
tree | ebb6065e6649be58fa8416a837772bd59020021a | |
parent | 77721b35ba21f2e7e8bb42cf415fccb018517843 (diff) |
Fix property not shown in inspector when type is PACKED_COLOR_ARRAY
-rw-r--r-- | editor/editor_properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index c0dadc4484..2d4a3ac788 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -3574,7 +3574,7 @@ EditorProperty *EditorInspectorDefaultPlugin::get_editor_for_property(Object *p_ case Variant::PACKED_COLOR_ARRAY: { EditorPropertyArray *editor = memnew(EditorPropertyArray); editor->setup(Variant::PACKED_COLOR_ARRAY); - + return editor; } break; default: { } |