Fix movable-only BoxHandles not actually being movable.
This commit is contained in:
parent
d6f5b98b95
commit
fc0080015d
@ -288,7 +288,7 @@ class BoxHandle(scenenode.Node, QtCore.QObject):
|
||||
# --- Mouse events ---
|
||||
|
||||
def mousePress(self, event):
|
||||
if self.moveModifierDown(event):
|
||||
if self.moveModifierDown(event) or not self.resizable:
|
||||
self.beginMove(event)
|
||||
elif self.resizable:
|
||||
# Find side of existing selection to drag
|
||||
|
Reference in New Issue
Block a user