The lane collapse chevron shows a resize cursor on hover — now it shows the standard arrow cursor

Added .onHover modifier to the collapseButton to explicitly set NSCursor.arrow when hovering over the collapse chevron, preventing the lane resize handle's resize cursor from appearing over the button.
This commit is contained in:
2026-08-09 08:38:07 -04:00
parent 0c4aad01a0
commit 41380a81d7
+3
View File
@@ -784,6 +784,9 @@ struct LaneView: View, Equatable {
.buttonStyle(.plain)
.accessibilityLabel(AccessibilityPhrases.collapseLaneLabel(lane: lane.title.value))
.disabled(!store.acceptsBoardMutations)
.onHover { inside in
if inside { NSCursor.arrow.push() } else { NSCursor.pop() }
}
}
// MARK: - The lane drag