aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-03-23 19:15:09 -0400
committerbobzel <zzzman@gmail.com>2023-03-23 19:15:09 -0400
commit8cbe8e5a1375e9e762b4893a2af71e4b2d22f11d (patch)
tree21c3ac2072a7ffac53be057b29d9b620759791e1 /src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
parent911bd3d5e395afa6b7eaf3bdf957b27325c3e46a (diff)
more adjustments to schema column resizing.
Diffstat (limited to 'src/client/views/collections/collectionSchema/CollectionSchemaView.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/CollectionSchemaView.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
index 4fc4c4881..d079bf839 100644
--- a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
+++ b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
@@ -266,8 +266,8 @@ export class CollectionSchemaView extends CollectionSubView() {
change = this._displayColumnWidths[shrinking] - CollectionSchemaView._minColWidth;
}
- this._displayColumnWidths[shrinking] -= change;
- this._displayColumnWidths[growing] += change;
+ this._displayColumnWidths[shrinking] -= change * this.props.ScreenToLocalTransform().Scale;
+ this._displayColumnWidths[growing] += change * this.props.ScreenToLocalTransform().Scale;
return false;
}