feat: Add "Quit App" button to the menu bar.

This commit is contained in:
Paweł Orzech 2026-01-18 02:42:04 +00:00
parent 9ea4974123
commit 1f2a4bab1c
No known key found for this signature in database

View file

@ -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()