We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ce226a commit 4b511aaCopy full SHA for 4b511aa
1 file changed
lib/python/gladevcp/speedcontrol.py
@@ -285,8 +285,11 @@ def get_value(self):
285
# we are not sync, so
286
def _on_value_changed(self, widget):
287
value = widget.get_value()
288
+
289
if self.type_linear_jog:
290
self._action.SET_JOG_RATE(value)
291
+ elif self.type_angular_jog:
292
+ self._action.SET_JOG_RATE_ANGULAR(value)
293
294
if value != self._value:
295
self._value = value
0 commit comments