Remove extra padding above status bar of 2px

This commit is contained in:
Kovid Goyal 2017-06-10 13:28:40 +05:30
parent 17b2317a4f
commit 6106b2f654
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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)