diff options
| author | bobzel <zzzman@gmail.com> | 2024-11-12 16:42:35 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-11-12 16:42:35 -0500 |
| commit | 8680d1c31d4f835663c070f5b8cef57254e75e28 (patch) | |
| tree | 1b38d983007b84f52354c96aae05f5ac98c6b6f6 /src/client/views/nodes/EquationBox.tsx | |
| parent | 6201fb8595729d049885d91278e990e49588f6f5 (diff) | |
made equation background same as text. fixed dflt stroke/link width to both be 1. made function plot axis ranges get saved to Doc. marked equation->function links as being svgs. fixed initial size of equation boxes..
Diffstat (limited to 'src/client/views/nodes/EquationBox.tsx')
| -rw-r--r-- | src/client/views/nodes/EquationBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/EquationBox.tsx b/src/client/views/nodes/EquationBox.tsx index 472fa56a0..34b46381d 100644 --- a/src/client/views/nodes/EquationBox.tsx +++ b/src/client/views/nodes/EquationBox.tsx @@ -81,7 +81,7 @@ export class EquationBox extends ViewBoxBaseComponent<FieldViewProps>() { _height: 300, backgroundColor: 'white', }); - const link = DocUtils.MakeLink(this.Document, graph, { link_relationship: 'function', link_description: 'input' }); + const link = DocUtils.MakeLink(this.Document, graph, { layout_isSvg: true, link_relationship: 'function', link_description: 'input' }); this._props.addDocument?.(graph); link && this._props.addDocument?.(link); e.stopPropagation(); |
