From 73a6681ceb2de58ae7595df4c3e716ddab4c4d65 Mon Sep 17 00:00:00 2001 From: syntaxbullet Date: Tue, 10 Feb 2026 13:15:15 +0100 Subject: [PATCH] feat: adjust max and step values for sharpen, edgeThreshold, and scanlines controls. --- src/components/ControlPanel.astro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ControlPanel.astro b/src/components/ControlPanel.astro index 7b1265a..75a13f4 100644 --- a/src/components/ControlPanel.astro +++ b/src/components/ControlPanel.astro @@ -93,7 +93,7 @@ import TuiButton from "./TuiButton.astro"; id="sharpen" label="SHP" min={0} - max={2} + max={10} step={0.01} value={0.0} title="Sharpen" @@ -133,8 +133,8 @@ import TuiButton from "./TuiButton.astro"; id="edgeThreshold" label="THR" min={0} - max={1} - step={0.01} + max={20} + step={0.1} value={0.5} title="Edge Threshold" description="Sets the sensitivity for edge detection. Higher values detect only strong edges." @@ -143,7 +143,7 @@ import TuiButton from "./TuiButton.astro"; id="scanlines" label="SCN" min={0} - max={1} + max={2} step={0.01} value={0.0} title="Scanlines"