From 57b816d5734489d0730d1355fbb75e53d3194885 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 27 Jan 2011 06:07:56 +0900 Subject: [PATCH] feed keystrokes in webview to super --- ankiqt/ui/view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ankiqt/ui/view.py b/ankiqt/ui/view.py index ba7ebce7f..40e8a2759 100644 --- a/ankiqt/ui/view.py +++ b/ankiqt/ui/view.py @@ -287,7 +287,7 @@ class AnkiWebView(QWebView): if evt.matches(QKeySequence.Copy): self.triggerPageAction(QWebPage.Copy) evt.accept() - evt.ignore() + QWebView.keyPressEvent(self, evt) def contextMenuEvent(self, evt): QWebView.contextMenuEvent(self, evt)