diff options
author | bobzel <zzzman@gmail.com> | 2020-10-16 02:02:10 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-10-16 02:02:10 -0400 |
commit | acccc301ed77d6ea15f025ff746138911b9f9c16 (patch) | |
tree | 78f42a080c24dda0702ac732bd7faf04c5eaf2ec /src/client/util/DocumentManager.ts | |
parent | 67e3a220a622ff1a1a54f04df48d57c34a3a387d (diff) |
fixed RTF so that you can scroll smoothly in a presentation.
Diffstat (limited to 'src/client/util/DocumentManager.ts')
-rw-r--r-- | src/client/util/DocumentManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DocumentManager.ts b/src/client/util/DocumentManager.ts index a408e1df6..dc911ea75 100644 --- a/src/client/util/DocumentManager.ts +++ b/src/client/util/DocumentManager.ts @@ -190,7 +190,7 @@ export class DocumentManager { highlight(); } else { // otherwise try to get a view of the context of the target const targetDocContextView = getFirstDocView(targetDocContext); - targetDocContext._scrollY = targetDocContext._scrollPY = NumCast(targetDocContext._scrollTop, 0); // this will force PDFs to activate and load their annotations / allow scrolling + targetDocContext._scrollY = targetDocContext._scrollPreviewY = NumCast(targetDocContext._scrollTop, 0); // this will force PDFs to activate and load their annotations / allow scrolling if (targetDocContextView) { // we found a context view and aren't forced to create a new one ... focus on the context first.. targetDocContext._viewTransition = "transform 500ms"; targetDocContextView.props.focus(targetDocContextView.props.Document, willZoom); |