aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-07-07 08:56:59 -0400
committerbobzel <zzzman@gmail.com>2025-07-07 08:56:59 -0400
commit8dd02b1b84a3b483e68a0af00b61b8ae39920458 (patch)
tree06231d52c9bb0d3f2825aad967c81585e12e39f5 /src
parent3c5ef282863ae4796622795b6b30c053126ab6c9 (diff)
fontSize fix for equationBoxes
Diffstat (limited to 'src')
-rw-r--r--src/client/views/nodes/EquationBox.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/EquationBox.tsx b/src/client/views/nodes/EquationBox.tsx
index 2ce24b688..3549cc5d3 100644
--- a/src/client/views/nodes/EquationBox.tsx
+++ b/src/client/views/nodes/EquationBox.tsx
@@ -70,7 +70,7 @@ export class EquationBox extends ViewBoxBaseComponent<FieldViewProps>() {
y: NumCast(this.layoutDoc.y) + NumCast(this.Document._height) + 10,
backgroundColor: StrCast(this.Document.backgroundColor),
color: StrCast(this.Document.color),
- fontSize: this.fontSize,
+ text_fontSize: this.fontSize,
});
DocumentView.SetSelectOnLoad(nextEq);
this._props.addDocument?.(nextEq);
@@ -158,7 +158,7 @@ Docs.Prototypes.TemplateMap.set(DocumentType.EQUATION, {
acl: '',
_xMargin: 10,
_yMargin: 10,
- fontSize: '14px',
+ text_fontSize: '14px',
_nativeWidth: 40,
_nativeHeight: 40,
_layout_reflowHorizontal: false,