summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-10-01 07:53:35 +0200
committerGitHub <noreply@github.com>2021-10-01 07:53:35 +0200
commitdf57aa670af563afafd7e38505bb0a939b2042af (patch)
treed5e6725af42631dfd60ba685488c306e2b3afe5f
parentb32f84d473df33b1c208971c9c83d1856150ed6f (diff)
parent8dd8630c25f0f65ca057a8482aabb20448907312 (diff)
Merge pull request #53278 from Geometror/fix-editor-property-array-color
-rw-r--r--editor/editor_properties.cpp2
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: {
}