1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +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

@@ -19,6 +19,7 @@ import { MarkupLanguage } from '@joplin/renderer';
interface Props {
themeId: number;
style: ViewStyle;
fontSize: number;
noteBody: string;
noteMarkupLanguage: MarkupLanguage;
highlightedKeywords: string[];
@@ -80,6 +81,7 @@ export default function NoteBodyViewer(props: Props) {
useRerenderHandler({
renderer,
fontSize: props.fontSize,
noteBody: props.noteBody,
noteMarkupLanguage: props.noteMarkupLanguage,
themeId: props.themeId,