mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-02-25 04:35:29 +01:00
E-book viewer: Ensure toolbars are always visible
This commit is contained in:
parent
b7fc5d2626
commit
7c19a4d545
1 changed files with 4 additions and 1 deletions
|
|
@ -359,7 +359,10 @@ def restore_state(self):
|
|||
mult = vprefs.get('multiplier', None)
|
||||
if mult:
|
||||
self.view.multiplier = mult
|
||||
|
||||
# On windows Qt lets the user hide toolbars via a right click in a very
|
||||
# specific location, ensure they are visible.
|
||||
self.tool_bar.setVisible(True)
|
||||
self.tool_bar2.setVisible(True)
|
||||
|
||||
def lookup(self, word):
|
||||
self.dictionary_view.setHtml('<html><body><p>'+ \
|
||||
|
|
|
|||
Loading…
Reference in a new issue