diff options
author | bob <bcz@cs.brown.edu> | 2020-02-07 15:53:40 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2020-02-07 15:53:40 -0500 |
commit | 8d61d534eae3cb0f95a4eb39bb3ac637b362f6d7 (patch) | |
tree | 9985c78b7ae6f100cc4abb3e7f2055bf4171879c | |
parent | d310058e80f0896e2724f8723d5b95e1077296c1 (diff) |
layout fix?
-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 9e8600193..171aecc70 100644 --- a/src/client/views/collections/CollectionStackingView.tsx +++ b/src/client/views/collections/CollectionStackingView.tsx @@ -378,7 +378,7 @@ export class CollectionStackingView extends CollectionSubView(doc => doc) { } @computed get contentScale() { const heightExtra = this.heightPercent > 1 ? this.heightPercent : 1; - return Math.max(this.props.Document[WidthSym]() / this.props.PanelWidth(), heightExtra * this.props.Document[HeightSym]() / this.props.PanelHeight()); + return Math.min(this.props.Document[WidthSym]() / this.props.PanelWidth(), heightExtra * this.props.Document[HeightSym]() / this.props.PanelHeight()); } @computed get widthScale() { return this.heightPercent < 1 ? Math.max(1, this.contentScale) : 1; |