summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorjmb462 <jmb462@gmail.com>2021-12-20 15:34:29 +0100
committerjmb462 <jmb462@gmail.com>2021-12-20 18:00:11 +0100
commitf491b43edde841fa0c264d617284ac5f155badd8 (patch)
treebf74cf388b6517206868b3aef4e4f08afacb1e88 /editor
parent71616630e033670dc90c5d87fb65b758877f8ea1 (diff)
Fix wrong ColorPicker shape with GradientEdit
Diffstat (limited to 'editor')
-rw-r--r--editor/plugins/gradient_editor_plugin.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/plugins/gradient_editor_plugin.cpp b/editor/plugins/gradient_editor_plugin.cpp
index da050abc02..6f2d950190 100644
--- a/editor/plugins/gradient_editor_plugin.cpp
+++ b/editor/plugins/gradient_editor_plugin.cpp
@@ -118,6 +118,9 @@ void EditorInspectorPluginGradient::parse_begin(Object *p_object) {
editor->set_gradient(g);
add_custom_control(editor);
+ int picker_shape = EDITOR_GET("interface/inspector/default_color_picker_shape");
+ editor->get_picker()->set_picker_shape((ColorPicker::PickerShapeType)picker_shape);
+
reverse_btn = memnew(GradientReverseButton);
gradient_tools_hbox = memnew(HBoxContainer);