From c6c5934fe8d54d0471375ac8c07b98a88d3459fc Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Fri, 17 Apr 2026 09:21:14 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20threshold=20step=200.05=20=E2=86=92=200.?= =?UTF-8?q?01=20for=20finer=20control?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 091eef9..bedda6d 100755 --- a/main.py +++ b/main.py @@ -1565,9 +1565,10 @@ class MainWindow(QMainWindow): self._btn_scan.clicked.connect(self._start_scan) self._sld_threshold = QDoubleSpinBox() + self._sld_threshold.setDecimals(2) self._sld_threshold.setRange(0.0, 1.0) - self._sld_threshold.setSingleStep(0.05) - self._sld_threshold.setValue(0.7) + self._sld_threshold.setSingleStep(0.01) + self._sld_threshold.setValue(0.70) self._sld_threshold.setPrefix("Thr: ") self._sld_threshold.setToolTip("Similarity threshold (0=match everything, 1=exact match)")