From 11cc58ca35cebfb8fcb318a4b2d6a2cc1984cc1e Mon Sep 17 00:00:00 2001 From: jeffvli Date: Fri, 14 Nov 2025 01:27:05 -0800 Subject: [PATCH] set playqueue scroll to center --- src/renderer/features/now-playing/components/play-queue.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/features/now-playing/components/play-queue.tsx b/src/renderer/features/now-playing/components/play-queue.tsx index ad5ad6530..433f01359 100644 --- a/src/renderer/features/now-playing/components/play-queue.tsx +++ b/src/renderer/features/now-playing/components/play-queue.tsx @@ -57,7 +57,7 @@ export const PlayQueue = forwardRef(({ listKey, sear ); if (songIndex !== -1) { - tableRef.current.scrollToIndex(songIndex); + tableRef.current.scrollToIndex(songIndex, { align: 'center' }); } }, },