aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-16 03:08:22 -0800
committerFuwn <[email protected]>2024-01-16 03:08:22 -0800
commit23b224a408c5d3c57c9115d4ad91315719f096b6 (patch)
treee951c1f05808c3fa6a3a7c399ecaedec8f68dcab /src/stores
parentrefactor(settings): rename thumbnail mode to cover (diff)
downloaddue.moe-23b224a408c5d3c57c9115d4ad91315719f096b6.tar.xz
due.moe-23b224a408c5d3c57c9115d4ad91315719f096b6.zip
feat(settings): customise anime cover width
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 8a6f5e03..b49429d5 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -33,6 +33,7 @@ export interface Settings {
displayDisableAnimations: boolean;
displayDisableNotifications: boolean;
displayCoverMode: boolean;
+ displayCoverWidth: number;
}
const defaultSettings: Settings = {
@@ -62,6 +63,7 @@ const defaultSettings: Settings = {
displayDisableAnimations: false,
displayDisableNotifications: false,
displayCoverMode: false,
+ displayCoverWidth: 116.609,
// Calculation
calculateChaptersRoundedDown: true,