From a037710e03b690a73d30320bf7378bf5cc119c44 Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Thu, 4 Jan 2024 08:36:46 -0800 Subject: Add Connect to Server to menu with classic cmd-K shortcut. Make sure globe next to server name dims when window is inactive. --- Hotline/macOS/ServerView.swift | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Hotline/macOS/ServerView.swift') diff --git a/Hotline/macOS/ServerView.swift b/Hotline/macOS/ServerView.swift index 7589744..a7dc90d 100644 --- a/Hotline/macOS/ServerView.swift +++ b/Hotline/macOS/ServerView.swift @@ -390,9 +390,12 @@ struct ServerView: View { .toolbar { ToolbarItem(placement: .navigation) { Image(systemName: "globe.americas.fill") + .renderingMode(.template) + .resizable() .scaledToFit() .frame(width: 18) + .opacity(controlActiveState == .inactive ? 0.4 : 1.0) } } } -- cgit