Fix poll button not displaying pre-iOS 18

This commit is contained in:
Shadowfacts 2025-02-06 12:57:20 -05:00
parent abbe0f82e6
commit c929c40cc9

View File

@ -99,7 +99,7 @@ private struct TogglePollButton: View {
var body: some View { var body: some View {
Button(action: togglePoll) { Button(action: togglePoll) {
Image(systemName: draft.pollEnabled ? "chart.bar.doc.horizontal.fill" : "chart.bar.horizontal.page") Image(systemName: draft.pollEnabled ? "chart.bar.doc.horizontal.fill" : "chart.bar.doc.horizontal")
} }
.buttonStyle(LanguageButtonStyle()) .buttonStyle(LanguageButtonStyle())
.disabled(disabled) .disabled(disabled)