[Bug]: Crop overlay cursor does not reliably change on border hover #165
Labels
No labels
Kind/Bug
Kind/Feature
Priority/High
Priority/Medium
Reviewed/Confirmed
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
ai-collab/bulk-image-organizer#165
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
App version
Current main (crop tools from issue #147)
Platform
Linux / Windows
Steps to reproduce
Expected behavior
The pointer changes to the matching resize or move cursor whenever it is over an interactive crop handle or inside the selection.
Actual behavior
The cursor often stays the default/open-hand pointer on the border, especially after a drag or on a fitted large image.
Additional context
Likely causes:
ScrollHandDrag, which forcesOpenHandCursorwhile crop mode is still active.MouseMoveis not consumed, so QGraphicsView can overwrite the viewport cursor.Fixed on
0.6.0/issue-165-crop-cursor(5d8a2a5).Cause: three things stacked so the pointer often stayed arrow/open-hand on the crop border:
ScrollHandDrag, which forcesOpenHandCursorwhile crop mode was still active.Fix: keep
NoDragfor the whole crop session; consume hover/move and set the cursor from hit-testing; convert corner/edge radii to viewport pixels; drop the edge inset; cosmetic border pens; overlay graphics ignore mouse so they do not steal hover.No PR to
mainuntil requested.