diff options
Diffstat (limited to 'Hotline/Application.swift')
| -rw-r--r-- | Hotline/Application.swift | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Hotline/Application.swift b/Hotline/Application.swift index 83751c3..3c5a5a9 100644 --- a/Hotline/Application.swift +++ b/Hotline/Application.swift @@ -55,6 +55,14 @@ struct Application: App { } .defaultSize(width: 700, height: 800) .defaultPosition(.center) + .commandsRemoved() + .commands { + CommandGroup(before: CommandGroupPlacement.newItem) { + Button("before item") { + print("before item") + } + } + } #if os(macOS) Settings { |