diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-01-01 11:35:49 -0800 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-01-01 11:35:49 -0800 |
| commit | 5d2aadbc834393b532d043d6298d6a23b80c2a5c (patch) | |
| tree | dcf139b67179d5bc3ad3ed69e949a1e7c1d18177 /Hotline/Application.swift | |
| parent | a4cbaea0b12b7dd42133b4bd14f1371f1000fcc0 (diff) | |
File downloads now working in macOS client.1.0beta4
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 { |