commit 04fa4edad8f4cf32b8f0f38f04ca2f1faf6673dc
parent 6fffe250c28a1ee2c84f6b95c316b543c3e3a5e7
Author: Joel Klabo <joelklabo@gmail.com>
Date: Wed, 8 Mar 2023 23:33:42 -0800
Fixed tab bar background color on macOS
Changelog-Fixed: Fixed tab bar background color on macOS
Closes: #765
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/damus/Components/CustomPicker.swift b/damus/Components/CustomPicker.swift
@@ -52,6 +52,7 @@ struct CustomPicker<SelectionValue: Hashable, Content: View>: View {
.accentColor(tag == selection ? textColor() : .gray)
}
}
+ .background(Color(UIColor.systemBackground))
}
func textColor() -> Color {