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

Mobile: Resolves #10824: Allow adjusting the default note viewer font size (#11633)

This commit is contained in:
Henry Heino
2025-01-18 04:43:07 -08:00
committed by GitHub
parent dc7871b655
commit dab2438df0
6 changed files with 26 additions and 3 deletions

View File

@@ -1057,6 +1057,20 @@ const builtInMetadata = (Setting: typeof SettingType) => {
// Deprecated in favour of windowContentZoomFactor
'style.zoom': { value: 100, type: SettingItemType.Int, public: false, storage: SettingStorage.File, isGlobal: true, appTypes: [AppType.Desktop], section: 'appearance', label: () => '', minimum: 50, maximum: 500, step: 10 },
'style.viewer.fontSize': {
value: 16,
type: SettingItemType.Int,
public: true,
storage: SettingStorage.File,
isGlobal: true,
appTypes: [AppType.Mobile],
section: 'appearance',
label: () => _('Viewer font size'),
minimum: 4,
maximum: 50,
step: 1,
},
'style.editor.fontSize': {
value: 15,
type: SettingItemType.Int,