From 6106b2f654122ab8190627a385128ced229e65ab Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 10 Jun 2017 13:28:40 +0530 Subject: [PATCH] Remove extra padding above status bar of 2px --- src/calibre/gui2/layout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/layout.py b/src/calibre/gui2/layout.py index 65ecdf5724..be1928f17b 100644 --- a/src/calibre/gui2/layout.py +++ b/src/calibre/gui2/layout.py @@ -294,7 +294,7 @@ class MainWindowMixin(object): # {{{ self.setCentralWidget(self.centralwidget) self._central_widget_layout = l = QVBoxLayout(self.centralwidget) m = l.contentsMargins() - m.setTop(0), m.setBottom(2) + m.setTop(0), m.setBottom(0) l.setContentsMargins(m) self.resize(1012, 740) self.location_manager = LocationManager(self)