From 96f44fefd4f395cdb6569a688e48ac6b7d13e5e7 Mon Sep 17 00:00:00 2001 From: zarzet Date: Sat, 31 Jan 2026 13:06:07 +0700 Subject: [PATCH] fix(ui): remove duplicate Embed Lyrics setting from Options page (#110) --- CHANGELOG.md | 1 + lib/screens/settings/options_settings_page.dart | 8 -------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d40a5ce..4aba70f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ - **Opus Cover Art**: Fixed cover art not being embedded in Opus files - **Deezer Pagination**: Fixed albums/playlists with >25 tracks only showing first 25 ([#112](https://github.com/zarzet/SpotiFLAC-Mobile/issues/112)) +- **Duplicate Embed Lyrics Setting**: Removed duplicate "Embed Lyrics" toggle from Options page - use "Lyrics Mode" in Download settings instead ([#110](https://github.com/zarzet/SpotiFLAC-Mobile/issues/110)) --- diff --git a/lib/screens/settings/options_settings_page.dart b/lib/screens/settings/options_settings_page.dart index 2ec153d6..7c786a9c 100644 --- a/lib/screens/settings/options_settings_page.dart +++ b/lib/screens/settings/options_settings_page.dart @@ -153,14 +153,6 @@ class OptionsSettingsPage extends ConsumerWidget { .read(settingsProvider.notifier) .setUseExtensionProviders(v), ), - SettingsSwitchItem( - icon: Icons.lyrics, - title: context.l10n.optionsEmbedLyrics, - subtitle: context.l10n.optionsEmbedLyricsSubtitle, - value: settings.embedLyrics, - onChanged: (v) => - ref.read(settingsProvider.notifier).setEmbedLyrics(v), - ), SettingsSwitchItem( icon: Icons.image, title: context.l10n.optionsMaxQualityCover,