diff options
author | bobzel <zzzman@gmail.com> | 2024-01-03 23:44:28 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-01-03 23:44:28 -0500 |
commit | 2ea594a4c1ff221200e0795fb07d30b603177a67 (patch) | |
tree | b1f8869320a460b88e7a832f6679b9fdb84e6e28 /src/client/views/nodes/DataVizBox/components/TableBox.tsx | |
parent | 3f7b73ee8a3f75cd688ee7ddc7b54d90b00bee67 (diff) |
cleaned up screenToLocalTransform in several places by making it additional methods. cleaned up styleProider api a bit to take DocumentViewInternalProps, not DocumentViewProps..
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/TableBox.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/components/TableBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/TableBox.tsx b/src/client/views/nodes/DataVizBox/components/TableBox.tsx index 5365fe1b2..ed44d9269 100644 --- a/src/client/views/nodes/DataVizBox/components/TableBox.tsx +++ b/src/client/views/nodes/DataVizBox/components/TableBox.tsx @@ -80,7 +80,7 @@ export class TableBox extends ObservableReactComponent<TableBoxProps> { }; @computed get viewScale() { - return this._props.docView?.()?._props.ScreenToLocalTransform().Scale || 1; + return this._props.docView?.()?.screenToViewTransform().Scale || 1; } @computed get rowHeight() { console.log('scale = ' + this.viewScale + ' table = ' + this._tableHeight + ' ids = ' + this._tableDataIds.length); |