From 7d670c5b63db44e32d33b7db3495b4d792866f86 Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Tue, 2 Jan 2024 19:14:45 -0800 Subject: Fix banners not loading. First crack at adding a classic icon set with icons painsakenly pulled from the original Hotline client. May try to "remaster" these somehow. --- Hotline/Application.swift | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'Hotline/Application.swift') diff --git a/Hotline/Application.swift b/Hotline/Application.swift index 3c5a5a9..baea4da 100644 --- a/Hotline/Application.swift +++ b/Hotline/Application.swift @@ -44,25 +44,21 @@ struct Application: App { Image(systemName: "globe.americas.fill") .resizable() .scaledToFit() -// .foregroundColor(.secondary) - .frame(width: 22) -// .fontWeight(.light) -// Text("􀵲") -// .font(.system(size: 22, weight: .ultraLight)) + .frame(width: 18) } } } } .defaultSize(width: 700, height: 800) .defaultPosition(.center) - .commandsRemoved() - .commands { - CommandGroup(before: CommandGroupPlacement.newItem) { - Button("before item") { - print("before item") - } - } - } +// .commandsRemoved() +// .commands { +// CommandGroup(before: CommandGroupPlacement.newItem) { +// Button("before item") { +// print("before item") +// } +// } +// } #if os(macOS) Settings { -- cgit