From 8207d8ece74782473cc7dd6d2e47259d6ae9e1b5 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Thu, 14 Nov 2024 18:06:01 -0500 Subject: Fix color setting --- scripts/gui-common/widgets.js | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'scripts/gui-common/widgets.js') diff --git a/scripts/gui-common/widgets.js b/scripts/gui-common/widgets.js index 0f92d08..66f8bfc 100644 --- a/scripts/gui-common/widgets.js +++ b/scripts/gui-common/widgets.js @@ -416,7 +416,8 @@ class WidgetSlider extends WidgetDragable { if (btns == 0) { - this.set(this.#tmpNum); + if (event.type == "mouseup") + this.set(this.#tmpNum); return; } @@ -608,7 +609,8 @@ class WidgetColorWheel extends WidgetDragable { if (btns == 0) { - this.set(this.#tmpColor); + if (event.type == "mouseup") + this.set(this.#tmpColor); return; } @@ -639,7 +641,13 @@ class WidgetColorWheel extends WidgetDragable #change () { this.#tmpColor = this.get(); - + + let m = this.#tmpColor.hsv_mag(); + let a = this.#tmpColor.hsv_angle(); + + this.element.style.setProperty("--detail", this.#tmpColor.rgb()); + this.element.style.setProperty("--pos-x", Math.cos(a) * m); + this.element.style.setProperty("--pos-y", Math.sin(a) * m); } update_detail(x, y, mag) -- cgit v1.2.3