Skip to content

Commit

Permalink
Make cursor change to indicate move action
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkDefender committed Jun 3, 2024
1 parent 1f47e97 commit 9a6f7c8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions beeref/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,9 @@ def hoverMoveEvent(self, event):
if edge().contains(event.pos()):
self.set_cursor(self.get_crop_edge_cursor(edge))
return
if self.crop_temp.contains(event.pos()):
self.set_cursor(Qt.CursorShape.SizeAllCursor)
return
self.unset_cursor()

def mousePressEvent(self, event):
Expand Down

0 comments on commit 9a6f7c8

Please sign in to comment.