commit 0ad8ac2dc1f396f0083f8405b19fa1754992fc3a
parent 842681a25b7051cc4f7455bb4c01fc37427595bb
Author: Hunter
Date: Fri, 17 Apr 2026 10:12:11 -0400
invert brush roundness direction (down to round)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/index.html b/index.html
@@ -521,7 +521,7 @@
dragAnchorY = e.clientY;
}
} else if (dragMode === 'roundness') {
- const target = dragRoundnessStart + dyPx / ROUNDNESS_DRAG_FULL_PX;
+ const target = dragRoundnessStart - dyPx / ROUNDNESS_DRAG_FULL_PX;
const clamped = clamp(target, 0, 1);
roundness = clamped;
if (target !== clamped) {