feat: add pref to disable note status updates (#1702)

This commit is contained in:
Aman Harwara
2022-09-30 20:34:56 +05:30
committed by GitHub
parent 0fa9f6d7b6
commit 08b70968f2
5 changed files with 149 additions and 39 deletions

View File

@@ -36,6 +36,7 @@ export enum PrefKey {
MobileNotesHideEditorIcon = 'mobileHideEditorIcon',
NewNoteTitleFormat = 'newNoteTitleFormat',
CustomNoteTitleFormat = 'customNoteTitleFormat',
UpdateSavingStatusIndicator = 'updateSavingStatusIndicator',
}
export enum NewNoteTitleFormat {
@@ -97,4 +98,5 @@ export type PrefValue = {
[PrefKey.CustomNoteTitleFormat]: string
[PrefKey.EditorLineHeight]: EditorLineHeight
[PrefKey.EditorFontSize]: EditorFontSize
[PrefKey.UpdateSavingStatusIndicator]: boolean
}