From 1f2a4bab1c42b79991dfe78e41d1da91964330aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Orzech?= Date: Sun, 18 Jan 2026 02:42:04 +0000 Subject: [PATCH] feat: Add "Quit App" button to the menu bar. --- FastMemos/Views/MenuBarView.swift | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/FastMemos/Views/MenuBarView.swift b/FastMemos/Views/MenuBarView.swift index f9b8fcb..3c2a8a2 100644 --- a/FastMemos/Views/MenuBarView.swift +++ b/FastMemos/Views/MenuBarView.swift @@ -127,6 +127,13 @@ struct MenuBarView: View { .font(.caption2) .foregroundColor(.secondary) Spacer() + + Button(action: { NSApplication.shared.terminate(nil) }) { + Text("Quit App") + .font(.caption2) + .foregroundColor(.secondary) + } + .buttonStyle(.plain) } } .padding()