diff options
author | bobzel <zzzman@gmail.com> | 2022-05-13 11:58:10 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-05-13 11:58:10 -0400 |
commit | e40a1e248da90af698d5ff64bd5d63d11211e6dc (patch) | |
tree | be471df9e7e52d5fd915daa54b801ace16347d7c /src/client/views/pdf/PDFViewer.tsx | |
parent | 5b71f2ffeabbc9f4fbb3fbceabdb7d542c80233c (diff) |
fixed crashing bug when quickly re-updating webbox (or other) icon. fixed infinite loop in FilterBox. changed TimeView to scale WebBox's. fixed issues with timeView filters. fixed bugs with webBox scrolling on startup, following links, etc.
Diffstat (limited to 'src/client/views/pdf/PDFViewer.tsx')
-rw-r--r-- | src/client/views/pdf/PDFViewer.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/pdf/PDFViewer.tsx b/src/client/views/pdf/PDFViewer.tsx index 608ba07ff..b0a5fc93b 100644 --- a/src/client/views/pdf/PDFViewer.tsx +++ b/src/client/views/pdf/PDFViewer.tsx @@ -484,7 +484,7 @@ export class PDFViewer extends React.Component<IViewerProps> { CollectionView={undefined} ScreenToLocalTransform={this.overlayTransform} renderDepth={this.props.renderDepth + 1} - />; + /> @computed get overlayTransparentAnnotations() { return this.renderAnnotations(this.transparentFilter, false); } @computed get overlayOpaqueAnnotations() { return this.renderAnnotations(this.opaqueFilter, false); } @computed get overlayClickableAnnotations() { |