From dcd356aee78d5d81613db9641bb71b1d3b673ac7 Mon Sep 17 00:00:00 2001 From: Psychotoxical Date: Sat, 18 Apr 2026 00:39:03 +0200 Subject: [PATCH] fix(lyrics): keep classic styles as default Existing users keep the rail/classic experience they're used to; the new Apple Music-like style is opt-in via the FS popover and the Sidebar Lyrics Style setting in Appearance. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/store/authStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/authStore.ts b/src/store/authStore.ts index 3f9e942d..7e246846 100644 --- a/src/store/authStore.ts +++ b/src/store/authStore.ts @@ -321,8 +321,8 @@ export const useAuthStore = create()( lyricsMode: 'standard', lyricsStaticOnly: false, showFullscreenLyrics: true, - fsLyricsStyle: 'apple', - sidebarLyricsStyle: 'apple', + fsLyricsStyle: 'rail', + sidebarLyricsStyle: 'classic', showFsArtistPortrait: true, fsPortraitDim: 28, showChangelogOnUpdate: true,