diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-08-29 04:06:15 -0400 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-08-29 04:06:15 -0400 |
commit | 85c0b1105dbdd4037872ecfc6b921551e1939eb8 (patch) | |
tree | 136bd37439f678ae383a5c054983b360faee662f /src/client/views/nodes/DocumentView.tsx | |
parent | f320fd9c5b387339fe9893b0c2d91b4396fc4552 (diff) |
Dataviz crash hopefully fixed; prototype func for generating templates; radius NaN bug handled
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 5af6e65de..79a2def87 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1444,7 +1444,6 @@ export class DocumentView extends DocComponent<DocumentViewProps>() { render() { TraceMobx(); const borderWidth = 50/*Number(StrCast(this.layoutDoc.layout_borderWidth).replace('px', ''))*/; - console.log(this._props.PanelWidth(), borderWidth) const xshift = Math.abs(this.Xshift) <= 0.001 ? this._props.PanelWidth() : undefined; const yshift = Math.abs(this.Yshift) <= 0.001 ? this._props.PanelHeight() : undefined; |