mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-30 04:27:47 +01:00
Fix completion popup not blocking single key shortcuts in the main book list
This commit is contained in:
parent
274d3d4a13
commit
6c9b9c3d64
1 changed files with 2 additions and 0 deletions
|
|
@ -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
|
||||
# }}}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue