mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #963196 (Window for metadata download above visible screen)
This commit is contained in:
parent
8f9a19aced
commit
47ec821d31
@ -882,6 +882,11 @@ class FullFetch(QDialog): # {{{
|
|||||||
self.covers_widget.chosen.connect(self.ok_clicked)
|
self.covers_widget.chosen.connect(self.ok_clicked)
|
||||||
self.stack.addWidget(self.covers_widget)
|
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.resize(850, 550)
|
||||||
|
|
||||||
self.finished.connect(self.cleanup)
|
self.finished.connect(self.cleanup)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user