diff options
| author | Fuwn <[email protected]> | 2024-01-16 02:21:25 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-16 02:21:25 -0800 |
| commit | 2f7c8ce0bbc7ecc13f6670e4575678a2ff0d7432 (patch) | |
| tree | b149b36fa8567694ae4cc706f8302cfa0d00c912 /src/stores | |
| parent | fix(sequelspy): move hover cover to title (diff) | |
| download | due.moe-2f7c8ce0bbc7ecc13f6670e4575678a2ff0d7432.tar.xz due.moe-2f7c8ce0bbc7ecc13f6670e4575678a2ff0d7432.zip | |
feat(anime): thumbnail mode
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/settings.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 17342ce4..8d03dfb0 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -32,6 +32,7 @@ export interface Settings { displayHoverCover: boolean; displayDisableAnimations: boolean; displayDisableNotifications: boolean; + displayThumbnailMode: boolean; } const defaultSettings: Settings = { @@ -60,6 +61,7 @@ const defaultSettings: Settings = { displayHoverCover: false, displayDisableAnimations: false, displayDisableNotifications: false, + displayThumbnailMode: false, // Calculation calculateChaptersRoundedDown: true, |