diff options
| author | Fuwn <[email protected]> | 2024-01-12 08:18:14 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-12 08:18:14 -0800 |
| commit | e662c6ba6b664cc7a930a391db59ab9a3d16c38c (patch) | |
| tree | 00854f15af86c90509e340a52de4b91239f490e2 /src/stores | |
| parent | feat(manga): more reactive loading progress (diff) | |
| download | due.moe-e662c6ba6b664cc7a930a391db59ab9a3d16c38c.tar.xz due.moe-e662c6ba6b664cc7a930a391db59ab9a3d16c38c.zip | |
feat(layout): disable animations setting
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 06b8a13f..ce41b9d9 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -30,6 +30,7 @@ export interface Settings { displayCountdownRightAligned: boolean; displayNativeCountdown: boolean; displayHoverCover: boolean; + displayDisableAnimations: boolean; } const defaultSettings: Settings = { @@ -56,6 +57,7 @@ const defaultSettings: Settings = { displayCountdownRightAligned: false, displayNativeCountdown: false, displayHoverCover: false, + displayDisableAnimations: false, // Calculation calculateChaptersRoundedDown: true, |