From 4d6f784cfb84ca98c66aa9bb1fa21f52badd25ed Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 3 Nov 2023 21:21:20 -0700 Subject: feat(list): native titles option --- src/stores/settings.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/stores/settings.ts') diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 85d137d5..12ac5d49 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -17,6 +17,7 @@ export interface Settings { displaySocialButton: boolean; disableGuessing: boolean; hoverNavigation: boolean; + displayNativeTitles: boolean; } const defaultSettings: Settings = { @@ -34,7 +35,8 @@ const defaultSettings: Settings = { limitListHeight: false, displaySocialButton: false, disableGuessing: false, - hoverNavigation: false + hoverNavigation: false, + displayNativeTitles: false }; const createStore = () => { -- cgit v1.2.3