fix: Disabled pane gesture navigation by default and moved it to Labs since it is unstable

This commit is contained in:
Aman Harwara
2023-03-15 17:05:41 +05:30
parent ddc290e302
commit 636de8fada
4 changed files with 42 additions and 7 deletions

View File

@@ -45,6 +45,7 @@ export enum PrefKey {
SystemViewPreferences = 'systemViewPreferences',
SuperNoteExportFormat = 'superNoteExportFormat',
AuthenticatorNames = 'authenticatorNames',
PaneGesturesEnabled = 'paneGesturesEnabled',
}
export enum NewNoteTitleFormat {
@@ -113,4 +114,5 @@ export type PrefValue = {
[PrefKey.SystemViewPreferences]: Partial<Record<SystemViewId, TagPreferences>>
[PrefKey.SuperNoteExportFormat]: 'json' | 'md' | 'html'
[PrefKey.AuthenticatorNames]: string
[PrefKey.PaneGesturesEnabled]: boolean
}