Merge pull request #63574 from Rindbee/fix-color-not-update

This commit is contained in:
Rémi Verschelde 2022-07-28 22:19:37 +02:00 committed by GitHub
commit 485d1a50ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -998,10 +998,10 @@ void ColorPicker::_w_input(const Ref<InputEvent> &p_event) {
h = y / w_edit->get_size().height;
}
if (current_mode == MODE_HSV) {
color.set_hsv(h, s, v, color.a);
} else if (current_mode == MODE_OKHSL) {
if (actual_shape == SHAPE_OKHSL_CIRCLE) {
color.set_ok_hsl(h, s, v, color.a);
} else {
color.set_hsv(h, s, v, color.a);
}
last_color = color;