1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Desktop: Accessibility: Allow toggling between tab navigation and indentation (#11717)

This commit is contained in:
Henry Heino
2025-01-27 10:34:58 -08:00
committed by GitHub
parent cc1582d535
commit 662185816d
27 changed files with 382 additions and 49 deletions

View File

@@ -683,6 +683,16 @@ const builtInMetadata = (Setting: typeof SettingType) => {
appTypes: [AppType.Mobile],
label: () => 'buttons included in the editor toolbar',
},
'editor.tabMovesFocus': {
value: false,
type: SettingItemType.Bool,
public: false,
section: 'note',
appTypes: [AppType.Desktop],
label: () => _('Tab moves focus'),
storage: SettingStorage.File,
isGlobal: true,
},
'notes.columns': {
value: defaultListColumns(),
public: false,