Fix symbol lookup error (knob2)
This commit is contained in:
parent
a6b0ce49e1
commit
d62e6a22c7
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ class Slider():
|
||||||
light = self._lowlight
|
light = self._lowlight
|
||||||
|
|
||||||
knob_x = x + ((_SLIDER_TRACK * self.value) // (self._steps-1))
|
knob_x = x + ((_SLIDER_TRACK * self.value) // (self._steps-1))
|
||||||
draw.blit(icons.knob2, knob_x, y, color)
|
draw.blit(icons.knob, knob_x, y, color)
|
||||||
|
|
||||||
w = knob_x - x
|
w = knob_x - x
|
||||||
if w > 0:
|
if w > 0:
|
||||||
|
|
Loading…
Reference in a new issue