mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-24 23:53:07 +02:00
...
This commit is contained in:
parent
3fa649358b
commit
bfff783d1e
2 changed files with 3 additions and 3 deletions
|
|
@ -268,6 +268,9 @@ def __init__(self, pathtoebook=None, debug_javascript=False, open_at=None):
|
|||
self.connect(self.action_full_screen, SIGNAL('triggered(bool)'),
|
||||
self.toggle_fullscreen)
|
||||
self.action_full_screen.setShortcuts([Qt.Key_F11, Qt.CTRL+Qt.SHIFT+Qt.Key_F])
|
||||
self.action_full_screen.setToolTip(_('Toggle full screen (%s)') %
|
||||
_(' or ').join([unicode(x.toString(x.NativeText)) for x in
|
||||
self.action_full_screen.shortcuts()]))
|
||||
self.connect(self.action_back, SIGNAL('triggered(bool)'), self.back)
|
||||
self.connect(self.action_bookmark, SIGNAL('triggered(bool)'), self.bookmark)
|
||||
self.connect(self.action_forward, SIGNAL('triggered(bool)'), self.forward)
|
||||
|
|
|
|||
|
|
@ -284,9 +284,6 @@
|
|||
<property name="text">
|
||||
<string>Toggle full screen</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Toggle full screen (F11)</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="action_print">
|
||||
<property name="icon">
|
||||
|
|
|
|||
Loading…
Reference in a new issue