From 69ddf90fda6d88fe440d6f6597db8c08962cd24e Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Wed, 3 Jan 2024 15:49:25 -0800 Subject: Dim Hotline logo in Servers window title bar when window is inactive. --- Hotline/Application.swift | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'Hotline/Application.swift') diff --git a/Hotline/Application.swift b/Hotline/Application.swift index 0804615..9c966d0 100644 --- a/Hotline/Application.swift +++ b/Hotline/Application.swift @@ -19,18 +19,8 @@ struct Application: App { Window("Servers", id: "servers") { TrackerView() .frame(minWidth: 250, minHeight: 250) - .toolbar { - ToolbarItem(placement: .navigation) { - Image("Hotline") - .resizable() - .renderingMode(.template) - .scaledToFit() - .foregroundColor(Color(hex: 0xE10000)) - .frame(width: 9) - } - } } - .defaultSize(width: 700, height: 600) + .defaultSize(width: 700, height: 550) .defaultPosition(.center) WindowGroup(id: "server", for: Server.self) { $server in -- cgit