aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2020-02-07 15:53:40 -0500
committerbob <bcz@cs.brown.edu>2020-02-07 15:53:40 -0500
commit8d61d534eae3cb0f95a4eb39bb3ac637b362f6d7 (patch)
tree9985c78b7ae6f100cc4abb3e7f2055bf4171879c /src
parentd310058e80f0896e2724f8723d5b95e1077296c1 (diff)
layout fix?
Diffstat (limited to 'src')
-rw-r--r--src/client/views/collections/CollectionStackingView.tsx2
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;