From 6c9b9c3d6473146e3aa8f3ffb49a029e7df75f46 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 17 Jul 2012 17:54:42 +0530 Subject: [PATCH] Fix completion popup not blocking single key shortcuts in the main book list --- src/calibre/gui2/complete2.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calibre/gui2/complete2.py b/src/calibre/gui2/complete2.py index dad2e21d90..59291cf04b 100644 --- a/src/calibre/gui2/complete2.py +++ b/src/calibre/gui2/complete2.py @@ -214,6 +214,8 @@ class Completer(QListView): # {{{ self.hide() e.accept() return True + elif etype == e.ShortcutOverride: + QApplication.sendEvent(widget, e) return False # }}}