From 134035b18a485cef101dd10c5dfb5928c8f96d7c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 23 Aug 2017 23:24:50 +0530 Subject: [PATCH] ... --- src/calibre/gui2/convert/single.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/convert/single.py b/src/calibre/gui2/convert/single.py index 0008d4a7a6..269bfcec79 100644 --- a/src/calibre/gui2/convert/single.py +++ b/src/calibre/gui2/convert/single.py @@ -178,7 +178,7 @@ class Config(QDialog, Ui_Dialog): def sizeHint(self): desktop = QCoreApplication.instance().desktop() geom = desktop.availableGeometry(self) - nh, nw = max(300, geom.height()-50), max(400, geom.width()-70) + nh, nw = max(300, geom.height()-100), max(400, geom.width()-70) return QSize(nw, nh) def restore_defaults(self):