fine_tune: Fix issue with wrong babystep interval selected.

This commit is contained in:
Jordan 2021-10-01 19:02:51 -04:00
parent 5e3e8be005
commit 3053502a32

View File

@ -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