diff options
author | Kongfa Waroros <gongpha@hotmail.com> | 2021-02-19 23:53:00 +0700 |
---|---|---|
committer | Kongfa Waroros <gongpha@hotmail.com> | 2021-02-19 23:53:00 +0700 |
commit | 27749711b2ebb8f67f793986fe83e88aa7bad149 (patch) | |
tree | 8dcca2de6810fd47241e36407d39904af99d0735 | |
parent | aaaaaf5bb60c108e1d32ad35ce07b73b2f54c51d (diff) | |
download | redot-engine-27749711b2ebb8f67f793986fe83e88aa7bad149.tar.gz |
Keep Hue value when Saturation or Value is zero
-rw-r--r-- | scene/gui/color_picker.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/scene/gui/color_picker.cpp b/scene/gui/color_picker.cpp index b82c078a2d..e8586b72e9 100644 --- a/scene/gui/color_picker.cpp +++ b/scene/gui/color_picker.cpp @@ -166,10 +166,13 @@ void ColorPicker::_value_changed(double) { } if (hsv_mode_enabled) { - color.set_hsv(scroll[0]->get_value() / 360.0, - scroll[1]->get_value() / 100.0, - scroll[2]->get_value() / 100.0, - scroll[3]->get_value() / 255.0); + h = scroll[0]->get_value() / 360.0; + s = scroll[1]->get_value() / 100.0; + v = scroll[2]->get_value() / 100.0; + color.set_hsv(h, s, v, scroll[3]->get_value() / 255.0); + + last_hsv = color; + } else { for (int i = 0; i < 4; i++) { color.components[i] = scroll[i]->get_value() / (raw_mode_enabled ? 1.0 : 255.0); |