Browse Source

don't hide mousecursor during track order change

master
Nils 3 years ago
parent
commit
5637546402
  1. 2
      qtgui/scorescene.py

2
qtgui/scorescene.py

@ -357,7 +357,7 @@ class GuiScore(QtWidgets.QGraphicsScene):
elif (modifiers == QtCore.Qt.AltModifier or modifiers == QtCore.Qt.ShiftModifier ) and self.parentView.mode() == "block":
track = self.trackAt(event.scenePos())
if track and not track is self.conductor:
self.parentView.setCursor(QtCore.Qt.BlankCursor)
#self.parentView.setCursor(QtCore.Qt.BlankCursor)
self.cursor.hide()
track.staticExportItem["guiPosStart"] = track.pos()
self.duringTrackDragAndDrop = track

Loading…
Cancel
Save