diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-05-13 16:57:56 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-05-13 16:57:56 -0700 |
| commit | e9fcf8c3b14e77479a6fb471bb51cd82a008147c (patch) | |
| tree | 372614f30b21fc30dd68b1bb047ca991cb2de9bd /Hotline/macOS/ServerView.swift | |
| parent | f04aef1044687253fbc56a0db0f3a905540eb03d (diff) | |
Show generic user icon in user list if user's icon can not be found.
Diffstat (limited to 'Hotline/macOS/ServerView.swift')
| -rw-r--r-- | Hotline/macOS/ServerView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
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) } |