File tree 1 file changed +1
-4
lines changed
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -1522,9 +1522,6 @@ def on_motion(self, evt):
1522
1522
# If the mouse is moving quickly while dragging, it may leave the artist,
1523
1523
# but should still use the move cursor.
1524
1524
if inside or self .got_artist :
1525
- # Ideally, this should use an open hand cursor on hover, and a closed
1526
- # hand when dragging, but those cursors are not natively provided by
1527
- # all platforms.
1528
1525
self ._hover = True
1529
1526
self .canvas .set_cursor (Cursors .MOVE )
1530
1527
elif self ._hover :
@@ -1533,7 +1530,7 @@ def on_motion(self, evt):
1533
1530
self ._hover = False
1534
1531
self .canvas .set_cursor (Cursors .POINTER )
1535
1532
1536
- if self ._check_still_parented () and self . got_artist :
1533
+ if self .got_artist :
1537
1534
dx = evt .x - self .mouse_x
1538
1535
dy = evt .y - self .mouse_y
1539
1536
self .update_offset (dx , dy )
You can’t perform that action at this time.
0 commit comments