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

Remove redundant navigation buttons in track rows

Remove duplicated context menu entries so each track row offers only the
relevant navigation action (album or artist) rather than both.

-17
macos/Rockbox.xcodeproj/project.xcworkspace/xcuserdata/tsirysandratraina.xcuserdatad/UserInterfaceState.xcuserstate

This is a binary file and will not be displayed.

-8
macos/Rockbox/Views/AlbumDetail/AlbumTrackView.swift
··· 129 129 130 130 Button(action: { 131 131 Task { 132 - await navigation.goToAlbum(byId: track.albumID) 133 - } 134 - }) { 135 - Label("Go to Album", systemImage: "square.stack") 136 - } 137 - 138 - Button(action: { 139 - Task { 140 132 await navigation.goToArtist(byId: track.artistID) 141 133 } 142 134 }) {
-9
macos/Rockbox/Views/ArtistDetail/ArtistTrackRowView.swift
··· 165 165 }) { 166 166 Label("Go to Album", systemImage: "square.stack") 167 167 } 168 - 169 - Button(action: { 170 - Task { 171 - await navigation.goToArtist(byId: track.artistID) 172 - } 173 - }) { 174 - Label("Go to Artist", systemImage: "music.mic") 175 - 176 - } 177 168 } label: { 178 169 Image(systemName: "ellipsis") 179 170 .font(.system(size: 14))