Fix completion popup not blocking single key shortcuts in the main book list

This commit is contained in:
Kovid Goyal 2012-07-17 17:54:42 +05:30
parent 274d3d4a13
commit 6c9b9c3d64

View File

@ -214,6 +214,8 @@ class Completer(QListView): # {{{
self.hide()
e.accept()
return True
elif etype == e.ShortcutOverride:
QApplication.sendEvent(widget, e)
return False
# }}}