aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-10-08 13:32:27 -0400
committerbobzel <zzzman@gmail.com>2020-10-08 13:32:27 -0400
commit4148b34504b51fade019389d7592cf825ddc0fa9 (patch)
treefda312644c1d046c0f1392cf4927242380ea27e1 /src/client/views/collections/collectionFreeForm
parentf6623a790fbb5df02effebbe9edea69383e0569f (diff)
fixes for getting pdfs and previews to scroll properly
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
index 382929861..5236fab27 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
@@ -901,7 +901,7 @@ export class CollectionFreeFormView extends CollectionSubView<PanZoomDocument, P
scrollTo = NumCast(doc.y);
}
if (curScroll !== scrollTo) {
- this.props.Document._scrollY = scrollTo;
+ this.props.Document._scrollPY = this.props.Document._scrollY = scrollTo;
delay = Math.abs(scrollTo - curScroll) > 5 ? 1000 : 0;
!dontCenter && delay && this.props.focus(this.props.Document);
afterFocus && setTimeout(afterFocus, delay);