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

stable commit: add spacing around outside of dialog box

Changeset 58d4e7285814

Parent 92a3ab7cfbd6

by David Golub

Changes to one file · Browse files at 58d4e7285814 Showing diff from parent 92a3ab7cfbd6 Diff from another changeset...

 
1048
1049
1050
1051
1052
1053
1054
1055
 
 
 
 
1056
1057
 
1058
1059
1060
 
1074
1075
1076
1077
1078
1079
1080
1081
 
1082
1083
1084
 
1048
1049
1050
 
1051
 
1052
1053
1054
1055
1056
1057
1058
 
1059
1060
1061
1062
 
1076
1077
1078
 
 
 
 
 
1079
1080
1081
1082
@@ -1048,13 +1048,15 @@
  self.opts = opts     layout = QVBoxLayout() - layout.setContentsMargins(2, 2, 2, 2)   layout.setMargin(0) - layout.setSpacing(0)   self.setLayout(layout)   + toplayout = QVBoxLayout() + toplayout.setContentsMargins(5, 5, 5, 0) + layout.addLayout(toplayout) +   commit = CommitWidget(repo, pats, opts, False, self) - layout.addWidget(commit, 1) + toplayout.addWidget(commit, 1)     self.statusbar = cmdui.ThgStatusBar(self)   commit.showMessage.connect(self.statusbar.showMessage) @@ -1074,11 +1076,7 @@
  self.commitButton.setText(_('Commit', 'action button'))   self.bb = bb   - bblayout = QHBoxLayout() - bblayout.addSpacing(5) - bblayout.addWidget(self.bb) - bblayout.addSpacing(5) - layout.addLayout(bblayout) + toplayout.addWidget(self.bb)   layout.addWidget(self.statusbar)     s = QSettings()