From b5261272ede8ebda4c77b98df5d72ce11d2cad34 Mon Sep 17 00:00:00 2001 From: Mauro Romito Date: Wed, 8 Apr 2026 15:41:19 +0200 Subject: [PATCH] fixes an issue where the playback speed was preventing the a11y label to be read --- .../Screens/Timeline/View/VoiceMessageRoomPlaybackView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/ElementX/Sources/Screens/Timeline/View/VoiceMessageRoomPlaybackView.swift b/ElementX/Sources/Screens/Timeline/View/VoiceMessageRoomPlaybackView.swift index 899c33512..64ea90c69 100644 --- a/ElementX/Sources/Screens/Timeline/View/VoiceMessageRoomPlaybackView.swift +++ b/ElementX/Sources/Screens/Timeline/View/VoiceMessageRoomPlaybackView.swift @@ -48,6 +48,7 @@ struct VoiceMessageRoomPlaybackView: View { .onChange(of: isDragging) { _, newValue in onScrubbing(newValue) } + .accessibilityElement(children: .combine) .accessibilityLabel(accessibilityLabel) }