diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-07-26 15:27:16 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-07-26 15:27:16 -0700 |
| commit | 5a1aac0219febaaab953ce354bd75907b22daba5 (patch) | |
| tree | da744d3a33ccd7fadbdc26adf3457421c8f6f9de /Hotline | |
| parent | d1cc8ee22acb8b8f378959ee3e618673b63f37d9 (diff) | |
Fix file transfer complete checkmark styling.
Diffstat (limited to 'Hotline')
| -rw-r--r-- | Hotline/macOS/ServerView.swift | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Hotline/macOS/ServerView.swift b/Hotline/macOS/ServerView.swift index 4e24a1b..8813db8 100644 --- a/Hotline/macOS/ServerView.swift +++ b/Hotline/macOS/ServerView.swift @@ -650,7 +650,8 @@ struct TransferItemView: View { else if transfer.completed { Image(systemName: "checkmark.circle.fill") .resizable() - .foregroundStyle(Color.fileComplete) + .symbolRenderingMode(.palette) + .foregroundStyle(.white, .fileComplete) .aspectRatio(contentMode: .fit) .frame(width: 16, height: 16) .opacity(controlActiveState == .inactive ? 0.5 : 1.0) |