mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix completion popup not blocking single key shortcuts in the main book list
This commit is contained in:
parent
274d3d4a13
commit
6c9b9c3d64
@ -214,6 +214,8 @@ class Completer(QListView): # {{{
|
|||||||
self.hide()
|
self.hide()
|
||||||
e.accept()
|
e.accept()
|
||||||
return True
|
return True
|
||||||
|
elif etype == e.ShortcutOverride:
|
||||||
|
QApplication.sendEvent(widget, e)
|
||||||
return False
|
return False
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user