aboutsummaryrefslogtreecommitdiff
path: root/src/stores/settings.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/settings.ts')
-rw-r--r--src/stores/settings.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts
index d0e83514..aa26d662 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -14,6 +14,7 @@ export interface Settings {
linkToAniList: boolean;
showCompletedAnime: boolean;
displayPausedMedia: boolean;
+ limitListHeight: boolean;
}
const defaultSettings: Settings = {
@@ -28,7 +29,8 @@ const defaultSettings: Settings = {
forceLightTheme: false,
linkToAniList: true,
showCompletedAnime: true,
- displayPausedMedia: true
+ displayPausedMedia: true,
+ limitListHeight: false
};
const createStore = () => {