From 8dd8630c25f0f65ca057a8482aabb20448907312 Mon Sep 17 00:00:00 2001 From: Hendrik Brucker Date: Fri, 1 Oct 2021 02:52:44 +0200 Subject: [PATCH] Fix property not shown in inspector when type is PACKED_COLOR_ARRAY --- editor/editor_properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: { }