aboutsummaryrefslogtreecommitdiff
path: root/Hotline/macOS/ServerView.swift
diff options
context:
space:
mode:
authorDustin Mierau <dustin@mierau.me>2024-07-26 15:27:16 -0700
committerDustin Mierau <dustin@mierau.me>2024-07-26 15:27:16 -0700
commit5a1aac0219febaaab953ce354bd75907b22daba5 (patch)
treeda744d3a33ccd7fadbdc26adf3457421c8f6f9de /Hotline/macOS/ServerView.swift
parentd1cc8ee22acb8b8f378959ee3e618673b63f37d9 (diff)
Fix file transfer complete checkmark styling.
Diffstat (limited to 'Hotline/macOS/ServerView.swift')
-rw-r--r--Hotline/macOS/ServerView.swift3
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)