diff options
author | bobzel <zzzman@gmail.com> | 2025-04-25 16:02:18 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-04-25 16:02:18 -0400 |
commit | b60b1863be5ecf987f3d3f2483e28e74f634853f (patch) | |
tree | 9b329b14949045e495b387bf6cf68fc2e2234772 /src/client/views/pdf/PDFViewer.tsx | |
parent | 10bd1bd27df3347ec7d50d8c49c1a65730db96a6 (diff) |
fixed face collection to show up. fixed pasting text dirextly into freeformview to create docs properly. also fixed paste to match source text styling better. fixed copying out of pdf. fixed formatting of gpt (()) calls from text box by using paste handling code.
Diffstat (limited to 'src/client/views/pdf/PDFViewer.tsx')
-rw-r--r-- | src/client/views/pdf/PDFViewer.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/pdf/PDFViewer.tsx b/src/client/views/pdf/PDFViewer.tsx index 041fc0de7..fc2567fbc 100644 --- a/src/client/views/pdf/PDFViewer.tsx +++ b/src/client/views/pdf/PDFViewer.tsx @@ -146,6 +146,7 @@ export class PDFViewer extends ObservableReactComponent<IViewerProps> { e.clipboardData.setData('dash/pdfAnchor', anchor[DocData][Id]); } e.preventDefault(); + e.stopPropagation(); } }; |