diff options
| author | Fuwn <[email protected]> | 2023-11-03 21:21:20 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-03 21:21:20 -0700 |
| commit | 4d6f784cfb84ca98c66aa9bb1fa21f52badd25ed (patch) | |
| tree | c1b1cd2f69976d6f76c35a928fc15db8371c55bb /src/stores | |
| parent | feat(anime): higher opacity for closest items (diff) | |
| download | due.moe-4d6f784cfb84ca98c66aa9bb1fa21f52badd25ed.tar.xz due.moe-4d6f784cfb84ca98c66aa9bb1fa21f52badd25ed.zip | |
feat(list): native titles option
Diffstat (limited to 'src/stores')
| -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 85d137d5..12ac5d49 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -17,6 +17,7 @@ export interface Settings { displaySocialButton: boolean; disableGuessing: boolean; hoverNavigation: boolean; + displayNativeTitles: boolean; } const defaultSettings: Settings = { @@ -34,7 +35,8 @@ const defaultSettings: Settings = { limitListHeight: false, displaySocialButton: false, disableGuessing: false, - hoverNavigation: false + hoverNavigation: false, + displayNativeTitles: false }; const createStore = () => { |