diff options
| author | bobzel <zzzman@gmail.com> | 2023-07-11 15:32:08 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-07-11 15:32:08 -0400 |
| commit | 06cfe3cbba127d865e788b00561f8a591af1bd81 (patch) | |
| tree | 2aeb0132d33e04c90483a46a3482ab3d8c4744d8 /src/client/views/nodes/button/FontIconBox.tsx | |
| parent | 8a852df1c918d8e31ba0b540798895fcd420cca7 (diff) | |
more fixes to simplify sharing
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 5bba51ec8..a0b0caf98 100644 --- a/src/client/views/nodes/button/FontIconBox.tsx +++ b/src/client/views/nodes/button/FontIconBox.tsx @@ -597,7 +597,7 @@ ScriptingGlobals.add(function setBackgroundColor(color?: string, checkResult?: b if (contentFrameNumber !== undefined) { CollectionFreeFormDocumentView.setStringValues(contentFrameNumber, dv.rootDoc, { fieldKey: color }); } else { - dv.rootDoc['_' + fieldKey] = color; + dv.dataDoc[fieldKey] = color; } }); } else { |
