mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-27 05:55:15 +01:00
Merge from trunk
This commit is contained in:
commit
ba33aed554
2 changed files with 2 additions and 1 deletions
|
|
@ -412,7 +412,7 @@ def get_results():
|
|||
|
||||
if msprefs['txt_comments']:
|
||||
for r in results:
|
||||
if r.plugin.has_html_comments and r.comments:
|
||||
if r.identify_plugin.has_html_comments and r.comments:
|
||||
r.comments = html2text(r.comments)
|
||||
|
||||
max_tags = msprefs['max_tags']
|
||||
|
|
|
|||
|
|
@ -534,6 +534,7 @@ def __init__(self, *args):
|
|||
_('&Lookup in dictionary'), self)
|
||||
self.dictionary_action.setShortcut(Qt.CTRL+Qt.Key_L)
|
||||
self.dictionary_action.triggered.connect(self.lookup)
|
||||
self.addAction(self.dictionary_action)
|
||||
self.goto_location_action = QAction(_('Go to...'), self)
|
||||
self.goto_location_menu = m = QMenu(self)
|
||||
self.goto_location_actions = a = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue