diff options
author | Flynn Garthwaite <flynn.garthwaite2@gmail.com> | 2022-11-19 09:26:39 +1300 |
---|---|---|
committer | Flynn Garthwaite <flynn.garthwaite2@gmail.com> | 2022-11-19 10:51:56 +1300 |
commit | b29f7c2fe8f39a4f1a4cfa15cac130c9c94605ae (patch) | |
tree | a92ae30f5635bf30caba31fb53b4a31e97e9c297 /scene | |
parent | c9c09ad608754a9025ca227358fca5a02553f2cb (diff) |
Fixed orientation of HSV rectangle vertical slider
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/color_picker.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scene/gui/color_picker.cpp b/scene/gui/color_picker.cpp index 724e5bcaf6..d68aa053e2 100644 --- a/scene/gui/color_picker.cpp +++ b/scene/gui/color_picker.cpp @@ -1088,7 +1088,9 @@ void ColorPicker::_hsv_draw(int p_which, Control *c) { } else if (p_which == 1) { if (actual_shape == SHAPE_HSV_RECTANGLE) { Ref<Texture2D> hue = get_theme_icon(SNAME("color_hue"), SNAME("ColorPicker")); - c->draw_texture_rect(hue, Rect2(Point2(), c->get_size())); + c->draw_set_transform(Point2(), -Math_PI / 2, Size2(c->get_size().x, -c->get_size().y)); + c->draw_texture_rect(hue, Rect2(Point2(), Size2(1, 1))); + c->draw_set_transform(Point2(), 0, Size2(1, 1)); int y = c->get_size().y - c->get_size().y * (1.0 - h); Color col; col.set_hsv(h, 1, 1); |