mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 08:55:07 +02:00
Fix #963196 (Window for metadata download above visible screen)
This commit is contained in:
parent
8f9a19aced
commit
47ec821d31
1 changed files with 5 additions and 0 deletions
|
|
@ -882,6 +882,11 @@ def __init__(self, current_cover=None, parent=None):
|
|||
self.covers_widget.chosen.connect(self.ok_clicked)
|
||||
self.stack.addWidget(self.covers_widget)
|
||||
|
||||
# Workaround for Qt 4.8.0 bug that causes the frame of the window to go
|
||||
# off the top of the screen if a max height is not set for the
|
||||
# QWebView. Seems to only happen on windows, but keep it for all
|
||||
# platforms just in case.
|
||||
self.identify_widget.comments_view.setMaximumHeight(500)
|
||||
self.resize(850, 550)
|
||||
|
||||
self.finished.connect(self.cleanup)
|
||||
|
|
|
|||
Loading…
Reference in a new issue