From 7fa805deee444ad04f3dca24c6dfc5d9c6fac665 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 16 May 2017 12:15:15 +0530 Subject: [PATCH] Add a bit fo spacing int he convert dialog lists --- src/calibre/gui2/convert/bulk.py | 1 + src/calibre/gui2/convert/single.py | 1 + 2 files changed, 2 insertions(+) diff --git a/src/calibre/gui2/convert/bulk.py b/src/calibre/gui2/convert/bulk.py index 3fd2570310..0aae167d4b 100644 --- a/src/calibre/gui2/convert/bulk.py +++ b/src/calibre/gui2/convert/bulk.py @@ -44,6 +44,7 @@ class BulkConfig(Config): 'of using the defaults specified in the Preferences')) self.output_formats.currentIndexChanged[str].connect(self.setup_pipeline) + self.groups.setSpacing(5) self.groups.activated[(QModelIndex)].connect(self.show_pane) self.groups.clicked[(QModelIndex)].connect(self.show_pane) self.groups.entered[(QModelIndex)].connect(self.show_group_help) diff --git a/src/calibre/gui2/convert/single.py b/src/calibre/gui2/convert/single.py index 687e5c0df6..0008d4a7a6 100644 --- a/src/calibre/gui2/convert/single.py +++ b/src/calibre/gui2/convert/single.py @@ -161,6 +161,7 @@ class Config(QDialog, Ui_Dialog): self.input_formats.currentIndexChanged[str].connect(self.setup_pipeline) self.output_formats.currentIndexChanged[str].connect(self.setup_pipeline) + self.groups.setSpacing(5) self.groups.activated[(QModelIndex)].connect(self.show_pane) self.groups.clicked[(QModelIndex)].connect(self.show_pane) self.groups.entered[(QModelIndex)].connect(self.show_group_help)