From 5d2aadbc834393b532d043d6298d6a23b80c2a5c Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Mon, 1 Jan 2024 11:35:49 -0800 Subject: File downloads now working in macOS client. --- Hotline/Application.swift | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Hotline/Application.swift') 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 { -- cgit