Improve refresh button hit area in StatusView

Added a fixed frame and content shape to the refresh button's image to make it easier to interact with. This enhances the usability of the refresh action in the StatusView.
This commit is contained in:
Paweł Orzech 2026-01-17 21:27:28 +00:00
parent b298404791
commit 1747bb110a
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

Binary file not shown.

View file

@ -84,6 +84,8 @@ struct StatusView: View {
appState.refreshNow()
} label: {
Image(systemName: "arrow.clockwise")
.frame(width: 20, height: 20)
.contentShape(Rectangle())
}
.buttonStyle(.plain)
.foregroundColor(.secondary)