From e9fcf8c3b14e77479a6fb471bb51cd82a008147c Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Mon, 13 May 2024 16:57:56 -0700 Subject: Show generic user icon in user list if user's icon can not be found. --- Hotline/macOS/ServerView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Hotline/macOS/ServerView.swift') diff --git a/Hotline/macOS/ServerView.swift b/Hotline/macOS/ServerView.swift index 9b4c044..acd3ac2 100644 --- a/Hotline/macOS/ServerView.swift +++ b/Hotline/macOS/ServerView.swift @@ -394,7 +394,7 @@ struct ServerView: View { .padding(.leading, 4) } else { - Text("") + Image("User") .frame(width: 16, height: 16) .padding(.leading, 4) } -- cgit