aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-09-16 21:07:46 -0400
committerbobzel <zzzman@gmail.com>2021-09-16 21:07:46 -0400
commit03c0caa35fa4ac63ac3efeb73de145ebd848cc54 (patch)
treee4f229ffdf34a81ad238d3e705eb343a6623b0aa
parent64119b5d8766725025b8b2bfda72f2401bba0f00 (diff)
from last
-rw-r--r--src/client/views/nodes/PDFBox.tsx5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/client/views/nodes/PDFBox.tsx b/src/client/views/nodes/PDFBox.tsx
index 274d166f1..f0a502e31 100644
--- a/src/client/views/nodes/PDFBox.tsx
+++ b/src/client/views/nodes/PDFBox.tsx
@@ -117,11 +117,6 @@ export class PDFBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProps
onKeyDown = action((e: KeyboardEvent) => {
let processed = false;
switch (e.key) {
- case "f": if (e.ctrlKey) {
- setTimeout(() => this._searchRef.current?.focus(), 100);
- this._searching = processed = true;
- }
- break;
case "PageDown": processed = this.forwardPage(); break;
case "PageUp": processed = this.backPage(); break;
}