fix(mac): show link cursor in About

This commit is contained in:
Peter Steinberger
2025-12-13 17:18:22 +00:00
parent ecf0da1796
commit aeffdc3632

View File

@@ -23,6 +23,7 @@ struct AboutSettings: View {
} }
.buttonStyle(.plain) .buttonStyle(.plain)
.focusable(false) .focusable(false)
.pointingHandCursor()
.onHover { hover in .onHover { hover in
withAnimation(.spring(response: 0.3, dampingFraction: 0.72)) { self.iconHover = hover } withAnimation(.spring(response: 0.3, dampingFraction: 0.72)) { self.iconHover = hover }
} }
@@ -159,6 +160,7 @@ private struct AboutLinkRow: View {
} }
.buttonStyle(.plain) .buttonStyle(.plain)
.onHover { self.hovering = $0 } .onHover { self.hovering = $0 }
.pointingHandCursor()
} }
} }