mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-19 04:23:21 +02:00
...
This commit is contained in:
parent
1945eb8a80
commit
2d9e47db52
1 changed files with 2 additions and 2 deletions
|
|
@ -216,7 +216,6 @@ def __init__(self, recipe_model, parent=None):
|
|||
self.detail_box.setVisible(False)
|
||||
self.download_button = self.buttonBox.addButton(_('&Download now'),
|
||||
self.buttonBox.ActionRole)
|
||||
self.download_button.setToolTip(_('Download this periodical now'))
|
||||
self.download_button.setIcon(QIcon(I('arrow-down.png')))
|
||||
self.download_button.setVisible(False)
|
||||
self.recipes.currentChanged = self.current_changed
|
||||
|
|
@ -375,7 +374,8 @@ def initialize_detail_box(self, urn):
|
|||
'''%dict(title=recipe.get('title'), cb=_('Created by: '),
|
||||
author=recipe.get('author', _('Unknown')),
|
||||
description=recipe.get('description', '')))
|
||||
|
||||
self.download_button.setToolTip(
|
||||
_('Downlod %s now')%recipe.get('title'))
|
||||
scheduled = schedule_info is not None
|
||||
self.schedule.setChecked(scheduled)
|
||||
self.toggle_schedule_info()
|
||||
|
|
|
|||
Loading…
Reference in a new issue