From f16bfc53672869e12e9bc5c473c414d8e8f91274 Mon Sep 17 00:00:00 2001 From: avashilling <165050625+avashilling@users.noreply.github.com> Date: Tue, 24 Jun 2025 09:33:40 -0400 Subject: [PATCH] chore: make audio marker color more consistent --- lib/pages/chat/events/audio_player.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/chat/events/audio_player.dart b/lib/pages/chat/events/audio_player.dart index 10e230d4b..6719ab0d1 100644 --- a/lib/pages/chat/events/audio_player.dart +++ b/lib/pages/chat/events/audio_player.dart @@ -540,8 +540,8 @@ class AudioPlayerState extends State { thumbColor: widget.senderId == Matrix.of(context).client.userID // Pangea# - ? theme.colorScheme.onPrimary - : theme.colorScheme.primary, + ? widget.color + : theme.colorScheme.onSurface, activeColor: waveform == null ? widget.color : Colors.transparent,