diff options
| author | bob <bcz@cs.brown.edu> | 2019-06-04 09:06:33 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-06-04 09:06:33 -0400 |
| commit | eccf79cb6e7abe2dd0555054e57d5037465c0bd2 (patch) | |
| tree | a32c1169670c0d1daead2714eb703a62d55f82c1 /src/client/views/collections/CollectionStackingView.tsx | |
| parent | 8edac25c7e39ba660d3d2b76f38d579a61e5d016 (diff) | |
fix for stackingview with zoombasis. fix for text box links w/ styles
Diffstat (limited to 'src/client/views/collections/CollectionStackingView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionStackingView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackingView.tsx b/src/client/views/collections/CollectionStackingView.tsx index ea3c144f2..acd585268 100644 --- a/src/client/views/collections/CollectionStackingView.tsx +++ b/src/client/views/collections/CollectionStackingView.tsx @@ -32,7 +32,7 @@ export class CollectionStackingView extends CollectionSubView(doc => doc) { let nh = NumCast(d.nativeHeight); if (nw && nh) hgt = nh / nw * Math.min(this.columnWidth, wid); return height + hgt + 2 * this.gridGap; - }, this.gridGap * 2); + }, this.gridGap * 2) * NumCast(this.props.Document.zoomBasis, 1); } }, { fireImmediately: true }); } |
