I have no idea why this happens, but...

Fix #1700191 [Error occasionally pops up when pressing Edit Medata](https://bugs.launchpad.net/calibre/+bug/1700191)
This commit is contained in:
Kovid Goyal 2017-06-25 15:11:20 +05:30
parent 13d6a6c6ec
commit 4cb057f8a5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -702,7 +702,8 @@ class Editor(QWidget): # {{{
self.toolbar2.addAction(self.editor.action_block_style) self.toolbar2.addAction(self.editor.action_block_style)
w = self.toolbar2.widgetForAction(self.editor.action_block_style) w = self.toolbar2.widgetForAction(self.editor.action_block_style)
w.setPopupMode(w.InstantPopup) if hasattr(w, 'setPopupMode'):
w.setPopupMode(w.InstantPopup)
self.toolbar2.addAction(self.editor.action_insert_link) self.toolbar2.addAction(self.editor.action_insert_link)
# }}} # }}}