Browse Source

Fix xycontroller scene not sending all values

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.3.0-RC1
falkTX 4 years ago
parent
commit
862f5fbb92
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/frontend/xycontroller-ui

+ 2
- 2
source/frontend/xycontroller-ui View File

@@ -197,7 +197,7 @@ class XYGraphicsScene(QGraphicsScene):
msgd.append(self.cc_x)
msgd.append(int(xp * rate + rate))

elif yp is not None:
if yp is not None:
msgd.append(self.cc_y)
msgd.append(int(yp * rate + rate))

@@ -305,7 +305,7 @@ class XYControllerUI(ExternalUI, QMainWindow):
# ---------------------------------------------------------------
# Final stuff

self.fIdleTimer = self.startTimer(50)
self.fIdleTimer = self.startTimer(60)
self.setWindowTitle(self.fUiName)
self.ready()



Loading…
Cancel
Save