Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1.2 and tip

stable status: add spacing around edge of window

Changeset 76f5d89c0a32

Parent 6021e44fa147

by David Golub

Changes to one file · Browse files at 76f5d89c0a32 Showing diff from parent 6021e44fa147 Diff from another changeset...

 
853
854
855
856
 
857
 
 
858
859
 
 
860
861
862
 
853
854
855
 
856
857
858
859
860
 
861
862
863
864
865
@@ -853,10 +853,13 @@
  QDialog.__init__(self, parent)   self.setWindowIcon(qtlib.geticon('hg-status'))   layout = QVBoxLayout() - layout.setContentsMargins(0, 6, 0, 0) + layout.setContentsMargins(0, 0, 0, 0)   self.setLayout(layout) + toplayout = QVBoxLayout() + toplayout.setContentsMargins(10, 10, 10, 0);   self.stwidget = StatusWidget(repo, pats, opts, self) - layout.addWidget(self.stwidget, 1) + toplayout.addWidget(self.stwidget, 1) + layout.addLayout(toplayout)     self.statusbar = cmdui.ThgStatusBar(self)   layout.addWidget(self.statusbar)