diff options
| author | bobzel <zzzman@gmail.com> | 2023-06-06 22:24:55 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-06-06 22:24:55 -0400 |
| commit | 3a70c915f3f2b64de72ac7cdff316184cb12db53 (patch) | |
| tree | c9ed9a19228400458ded9adb746d76b4840c5ea6 /src/client/views/nodes/button/FontIconBox.tsx | |
| parent | 9accdb19ea34240ad2c7739ea72e51aeaae2a77b (diff) | |
updated text properties to be prefixed with field 'text_'
Diffstat (limited to 'src/client/views/nodes/button/FontIconBox.tsx')
| -rw-r--r-- | src/client/views/nodes/button/FontIconBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/button/FontIconBox.tsx b/src/client/views/nodes/button/FontIconBox.tsx index 7f08de246..601759dbb 100644 --- a/src/client/views/nodes/button/FontIconBox.tsx +++ b/src/client/views/nodes/button/FontIconBox.tsx @@ -943,7 +943,7 @@ ScriptingGlobals.add(function toggleSingleLineSchema(checkResult?: boolean) { * groupBy */ ScriptingGlobals.add(function setGroupBy(key: string, checkResult?: boolean) { - SelectionManager.Docs().map(doc => (doc._fontFamily = key)); + SelectionManager.Docs().map(doc => (doc._text_fontFamily = key)); const editorView = RichTextMenu.Instance.TextView?.EditorView; if (checkResult) { return StrCast((editorView ? RichTextMenu.Instance : Doc.UserDoc()).fontFamily); |
