Skip to content

Commit

Permalink
kite: fix compatibility with newer qt versions
Browse files Browse the repository at this point in the history
  • Loading branch information
emolch committed May 10, 2023
1 parent 5a1fbba commit fe639bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kite/qt_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def setSliderValue(self, val):
val *= 99
val = int(round(val))

self.slider.setValue(val)
self.slider.setValue(int(round(val)))

def setRange(self, vmin, vmax):
"""
Expand Down

0 comments on commit fe639bb

Please sign in to comment.