aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-12 08:18:14 -0800
committerFuwn <[email protected]>2024-01-12 08:18:14 -0800
commite662c6ba6b664cc7a930a391db59ab9a3d16c38c (patch)
tree00854f15af86c90509e340a52de4b91239f490e2 /src/stores
parentfeat(manga): more reactive loading progress (diff)
downloaddue.moe-e662c6ba6b664cc7a930a391db59ab9a3d16c38c.tar.xz
due.moe-e662c6ba6b664cc7a930a391db59ab9a3d16c38c.zip
feat(layout): disable animations setting
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/settings.ts2
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,