You've already forked joplin
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:
@ -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,
|
||||
|
Reference in New Issue
Block a user