From 072bef473f9c02cad9b0200ecd998fd26fca6944 Mon Sep 17 00:00:00 2001 From: Frank Stellmacher <171614930+Psychotoxical@users.noreply.github.com> Date: Tue, 5 May 2026 23:40:07 +0200 Subject: [PATCH] fix(queue): restore pre-#419 Play-icon prefix on the active row (#469) PR #419 replaced the small (10px) Play icon next to the active queue title with an animated 3-bar eq-bars block prefixed before the row. Restore the original Play-icon-in-title behaviour and drop the unused isStorePlaying selector. --- src/components/QueuePanel.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/components/QueuePanel.tsx b/src/components/QueuePanel.tsx index 67b2bbe5..16747744 100644 --- a/src/components/QueuePanel.tsx +++ b/src/components/QueuePanel.tsx @@ -395,7 +395,6 @@ function QueuePanelHostOrSolo() { const crossfadeBtnRef = useRef(null); const crossfadePopoverRef = useRef(null); const reanalyzeLoudnessForTrack = usePlayerStore(s => s.reanalyzeLoudnessForTrack); - const isStorePlaying = usePlayerStore(s => s.isPlaying); const authLoudnessTargetLufs = useAuthStore(s => s.loudnessTargetLufs); const setLoudnessTargetLufs = useAuthStore(s => s.setLoudnessTargetLufs); const loudnessPreAnalysisAttenuationDb = useAuthStore(s => s.loudnessPreAnalysisAttenuationDb); @@ -1092,15 +1091,9 @@ function QueuePanelHostOrSolo() { }} style={dragStyle} > - {isPlaying && ( -
-
-
-
-
- )}
+ {isPlaying && } {track.title}
{track.artist}