|
@@ -21,6 +21,6 @@ class Slider(FloatElement):
|
|
:param value: initial value to set position of the slider
|
|
:param value: initial value to set position of the slider
|
|
:param on_change: callback which is invoked when the user releases the slider
|
|
:param on_change: callback which is invoked when the user releases the slider
|
|
"""
|
|
"""
|
|
- view = jp.QSlider(min=min, max=max, step=step, change=self.handle_change, temp=False)
|
|
|
|
|
|
+ view = jp.QSlider(min=min, max=max, step=step, change=self.handle_change, disable_input_event=True, temp=False)
|
|
|
|
|
|
super().__init__(view, value=value, on_change=on_change)
|
|
super().__init__(view, value=value, on_change=on_change)
|