diff options
| author | Fuwn <[email protected]> | 2023-11-27 21:10:20 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-27 21:10:20 -0800 |
| commit | 31ac15a9b9f33afce0e0fa40b463278916e45562 (patch) | |
| tree | d8456cce95c46f9cefcb01f60a838642dcc0c1c4 /src/stores/settings.ts | |
| parent | fix(anime): restore few setter (diff) | |
| download | due.moe-31ac15a9b9f33afce0e0fa40b463278916e45562.tar.xz due.moe-31ac15a9b9f33afce0e0fa40b463278916e45562.zip | |
feat(list): furigana
Diffstat (limited to 'src/stores/settings.ts')
| -rw-r--r-- | src/stores/settings.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index e7d07324..a194f6c3 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -21,6 +21,7 @@ export interface Settings { guessMethod: 'median' | 'iqr_median' | 'iqr_mode' | 'mode'; disableOutOfDateVolumeWarning: boolean; displayPlannedAnime: boolean; + displayFurigana: boolean; } const defaultSettings: Settings = { @@ -42,7 +43,8 @@ const defaultSettings: Settings = { displayNativeTitles: false, guessMethod: 'median', disableOutOfDateVolumeWarning: false, - displayPlannedAnime: true + displayPlannedAnime: true, + displayFurigana: false }; const createStore = () => { |