1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-27 23:28:38 +02:00

Mobile: Setting to disable spellcheck in beta editor (#6780)

This commit is contained in:
Henry Heino
2022-08-27 05:53:46 -07:00
committed by GitHub
parent 40e682faae
commit ae300de42f
5 changed files with 17 additions and 11 deletions

View File

@ -1026,6 +1026,19 @@ class Setting extends BaseModel {
isGlobal: true,
},
// Enables/disables spellcheck in the mobile markdown beta editor.
'editor.mobile.spellcheckEnabled': {
value: true,
type: SettingItemType.Bool,
section: 'note',
public: true,
appTypes: [AppType.Mobile],
show: (settings: any) => settings['editor.beta'],
label: () => _('Enable spellcheck in the beta editor'),
storage: SettingStorage.File,
isGlobal: true,
},
newTodoFocus: {
value: 'title',
type: SettingItemType.String,