aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-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 = () => {