A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

Expand button hit targets in macOS views

+8 -1
macos/Rockbox.xcodeproj/project.xcworkspace/xcuserdata/tsirysandratraina.xcuserdatad/UserInterfaceState.xcuserstate

This is a binary file and will not be displayed.

+2
macos/Rockbox/Views/AlbumDetail/AlbumHeaderView.swift
··· 27 27 .font(.system(size: 13)) 28 28 } 29 29 .foregroundStyle(.secondary) 30 + .frame( minHeight: 34) 31 + .contentShape(Rectangle()) 30 32 } 31 33 .buttonStyle(.plain) 32 34
+2
macos/Rockbox/Views/ArtistDetail/ArtistHeaderView.swift
··· 28 28 .font(.system(size: 13)) 29 29 } 30 30 .foregroundStyle(.secondary) 31 + .frame( minHeight: 34) 32 + .contentShape(Rectangle()) 31 33 } 32 34 .buttonStyle(.plain) 33 35
+4 -1
macos/Rockbox/Views/Files/FilesListView.swift
··· 21 21 Button(action: goBack) { 22 22 Image(systemName: "chevron.left") 23 23 .font(.system(size: 14, weight: .medium)) 24 + .frame(minHeight: 30) 25 + .frame(minWidth: 30) 26 + .contentShape(Rectangle()) 24 27 } 25 28 .buttonStyle(.plain) 26 29 .disabled(pathHistory.isEmpty) 27 30 .opacity(pathHistory.isEmpty ? 0.3 : 1) 28 - 31 + 29 32 Text(currentPathDisplay) 30 33 .font(.system(size: 13, weight: .medium)) 31 34 .lineLimit(1)