diff options
author | Sam Wilkins <abdullah_ahmed@brown.edu> | 2019-07-30 19:27:19 -0400 |
---|---|---|
committer | Sam Wilkins <abdullah_ahmed@brown.edu> | 2019-07-30 19:27:19 -0400 |
commit | 0fd8973433b0fc7f0cdb6604ed3b3486288a31f3 (patch) | |
tree | 2a186677ca51a0c2c76962177d8b266d7c0b6f2c /src | |
parent | 5ec18c73ec04d0f50cedb220518be9c58e62997c (diff) |
changed willZoom to true so presentation zooms
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/presentationview/PresentationView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/presentationview/PresentationView.tsx b/src/client/views/presentationview/PresentationView.tsx index 4fe9d3a1b..e74a169a9 100644 --- a/src/client/views/presentationview/PresentationView.tsx +++ b/src/client/views/presentationview/PresentationView.tsx @@ -375,7 +375,7 @@ export class PresentationView extends React.Component<PresViewProps> { //awaiting jump so that new scale can be found, since jumping is async await DocumentManager.Instance.jumpToDocument(curDoc, true); } else { - await DocumentManager.Instance.jumpToDocument(curDoc, false, undefined, doc => CollectionDockingView.Instance.AddTab(undefined, doc, undefined)); + await DocumentManager.Instance.jumpToDocument(curDoc, true, undefined, doc => CollectionDockingView.Instance.AddTab(undefined, doc, undefined)); } let newScale = DocumentManager.Instance.getScaleOfDocView(curDoc); |