Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable commit: move status bar below the button bar (closes #107)

Changeset 4813285005d2

Parent 496ad911ed86

by Steve Borho

Changes to one file · Browse files at 4813285005d2 Showing diff from parent 496ad911ed86 Diff from another changeset...

 
887
888
889
 
890
891
892
893
894
895
896
897
898
899
 
911
912
913
914
915
916
917
918
919
 
 
920
921
922
 
887
888
889
890
891
892
893
894
895
896
 
897
898
899
 
911
912
913
 
 
 
 
 
 
914
915
916
917
918
@@ -887,13 +887,13 @@
  layout = QVBoxLayout()   layout.setContentsMargins(2, 2, 2, 2)   layout.setMargin(0) + layout.setSpacing(0)   self.setLayout(layout)     commit = CommitWidget(pats, opts, opts.get('root'), False, self)   layout.addWidget(commit, 1)     self.statusbar = cmdui.ThgStatusBar(self) - self.statusbar.setSizeGripEnabled(False)   commit.showMessage.connect(self.statusbar.showMessage)   commit.progress.connect(self.statusbar.progress)   commit.linkActivated.connect(self.linkActivated) @@ -911,12 +911,8 @@
  self.commitButton.setText(_('Commit'))   self.bb = bb   - hbox = QHBoxLayout() - hbox.setMargin(0) - hbox.setContentsMargins(*(0,)*4) - hbox.addWidget(self.statusbar) - hbox.addWidget(self.bb) - layout.addLayout(hbox) + layout.addWidget(self.bb) + layout.addWidget(self.statusbar)     s = QSettings()   self.restoreGeometry(s.value('commit/geom').toByteArray())