aboutsummaryrefslogtreecommitdiff
path: root/src/stores/settings.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-10-31 00:10:02 -0700
committerFuwn <[email protected]>2023-10-31 00:10:02 -0700
commit12962b307b6562feb6104e41e11f4ddc07809ba6 (patch)
tree8e09741a7e7d2b9951f75734a3a3c0122f03fae9 /src/stores/settings.ts
parentrefactor(badges): use http methods (diff)
downloaddue.moe-12962b307b6562feb6104e41e11f4ddc07809ba6.tar.xz
due.moe-12962b307b6562feb6104e41e11f4ddc07809ba6.zip
feat(layout): small navigation
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 5ffae4f5..85d137d5 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -16,6 +16,7 @@ export interface Settings {
limitListHeight: boolean;
displaySocialButton: boolean;
disableGuessing: boolean;
+ hoverNavigation: boolean;
}
const defaultSettings: Settings = {
@@ -32,7 +33,8 @@ const defaultSettings: Settings = {
displayPausedMedia: true,
limitListHeight: false,
displaySocialButton: false,
- disableGuessing: false
+ disableGuessing: false,
+ hoverNavigation: false
};
const createStore = () => {