add option to set local lyric priority

This commit is contained in:
jeffvli 2025-06-25 21:25:29 -07:00
parent 64866c59bd
commit 620b810191
4 changed files with 47 additions and 8 deletions

View file

@ -266,6 +266,7 @@ export interface SettingsState {
fontSizeUnsync: number;
gap: number;
gapUnsync: number;
preferLocalLyrics: boolean;
showMatch: boolean;
showProvider: boolean;
sources: LyricSource[];
@ -448,6 +449,7 @@ const initialState: SettingsState = {
fontSizeUnsync: 24,
gap: 24,
gapUnsync: 24,
preferLocalLyrics: true,
showMatch: true,
showProvider: true,
sources: [LyricSource.NETEASE, LyricSource.LRCLIB],