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 @@ def eventFilter(self, obj, e):
self.hide()
e.accept()
return True
elif etype == e.ShortcutOverride:
QApplication.sendEvent(widget, e)
return False
# }}}