From 3053502a32a45afe2eb1adcf43be111856a70535 Mon Sep 17 00:00:00 2001 From: Jordan Date: Fri, 1 Oct 2021 19:02:51 -0400 Subject: [PATCH] fine_tune: Fix issue with wrong babystep interval selected. --- panels/fine_tune.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panels/fine_tune.py b/panels/fine_tune.py index 9f463bbf..3d07b45b 100644 --- a/panels/fine_tune.py +++ b/panels/fine_tune.py @@ -88,7 +88,7 @@ class FineTunePanel(ScreenPanel): ctx.add_class("distbutton_bottom") else: ctx.add_class("distbutton") - if i == "0.05": + if i == self.bs_delta: ctx.add_class("distbutton_active") bsgrid.attach(self.labels[i], j, 0, 1, 1) j += 1