From c929c40cc9ee37684cea757a2b64071a80faecfc Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Thu, 6 Feb 2025 12:57:20 -0500 Subject: [PATCH] Fix poll button not displaying pre-iOS 18 --- .../ComposeUI/Sources/ComposeUI/Views/DraftContentEditor.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packages/ComposeUI/Sources/ComposeUI/Views/DraftContentEditor.swift b/Packages/ComposeUI/Sources/ComposeUI/Views/DraftContentEditor.swift index 3a57a01d..0d25936c 100644 --- a/Packages/ComposeUI/Sources/ComposeUI/Views/DraftContentEditor.swift +++ b/Packages/ComposeUI/Sources/ComposeUI/Views/DraftContentEditor.swift @@ -99,7 +99,7 @@ private struct TogglePollButton: View { var body: some View { 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()) .disabled(disabled)