From 9a6f7c8812e50575676b90ec625f609ecee2a390 Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Mon, 3 Jun 2024 14:25:50 +0200 Subject: [PATCH] Make cursor change to indicate move action --- beeref/items.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/beeref/items.py b/beeref/items.py index f09d2e3..638a3da 100644 --- a/beeref/items.py +++ b/beeref/items.py @@ -520,6 +520,9 @@ class BeePixmapItem(BeeItemMixin, QtWidgets.QGraphicsPixmapItem): 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):