diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-07-07 18:06:38 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-07-07 18:27:16 +1000 |
| commit | f335593f9bfbd1eb3db939b23af799709d5d8104 (patch) | |
| tree | b4cc01842407ef1fd8743e4e54aab0b7b6fa7e4b /src/components/SettingsModal.vue | |
| parent | 716c132b15f3e37a5e0456e65406122324821047 (diff) | |
Add auto-hiding of ancestors on leaf-click
Diffstat (limited to 'src/components/SettingsModal.vue')
| -rw-r--r-- | src/components/SettingsModal.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/SettingsModal.vue b/src/components/SettingsModal.vue index f0b9dc0..75db34b 100644 --- a/src/components/SettingsModal.vue +++ b/src/components/SettingsModal.vue @@ -93,6 +93,10 @@ <label> <input type="checkbox" v-model="uiOpts.searchJumpMode" @change="onSettingChg('UI', 'searchJumpMode')"/> Skip search animation </label> </div> + <div> + <label> <input type="checkbox" v-model="uiOpts.autoHide" + @change="onSettingChg('UI', 'autoHide')"/> Auto-hide ancestors </label> + </div> <div v-if="uiOpts.touchDevice == false"> <label> <input type="checkbox" v-model="uiOpts.disableShortcuts" @change="onSettingChg('UI', 'disableShortcuts')"/> Disable keyboard shortcuts </label> |
