diff --git a/Sources/Pesty/UI/BarView.swift b/Sources/Pesty/UI/BarView.swift index 87dcd77..9d2f93e 100644 --- a/Sources/Pesty/UI/BarView.swift +++ b/Sources/Pesty/UI/BarView.swift @@ -106,11 +106,19 @@ struct BarView: View { private var moreMenu: some View { Menu { - Button("Settings…") { AppController.shared.showSettings() } - Button("Clear History") { store.clearHistory() } + Button { AppController.shared.showSettings() } label: { + Label("Settings…", systemImage: "gearshape") + } + Button { store.clearHistory() } label: { + Label("Clear History", systemImage: "trash") + } Divider() - Button("About Pesty") { AppController.shared.showAbout() } - Button("Quit Pesty") { NSApp.terminate(nil) } + Button { AppController.shared.showAbout() } label: { + Label("About Pesty", systemImage: "info.circle") + } + Button { NSApp.terminate(nil) } label: { + Label("Quit Pesty", systemImage: "power") + } } label: { Image(systemName: "ellipsis") .font(.system(size: 15, weight: .semibold))