diff options
| author | Fuwn <[email protected]> | 2024-01-16 03:08:22 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-16 03:08:22 -0800 |
| commit | 23b224a408c5d3c57c9115d4ad91315719f096b6 (patch) | |
| tree | e951c1f05808c3fa6a3a7c399ecaedec8f68dcab /src/stores | |
| parent | refactor(settings): rename thumbnail mode to cover (diff) | |
| download | due.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.ts | 2 |
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, |