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

stable mq: pack the guards button and qinit/qci button horizontally

Changeset da7bb49b6987

Parent 2588dededbb8

by Steve Borho

Changes to one file · Browse files at da7bb49b6987 Showing diff from parent 2588dededbb8 Diff from another changeset...

 
109
110
111
 
 
 
112
113
 
114
115
116
 
 
117
118
119
 
109
110
111
112
113
114
115
 
116
117
118
 
119
120
121
122
123
@@ -109,11 +109,15 @@
  self.queueListWidget = QListWidget(self)   layout.addWidget(self.queueListWidget, 1)   + bbarhbox = QHBoxLayout() + bbarhbox.setSpacing(5) + layout.addLayout(bbarhbox)   self.guardSelBtn = QPushButton() - layout.addWidget(self.guardSelBtn, 0) + bbarhbox.addWidget(self.guardSelBtn)     self.revisionOrCommitBtn = QPushButton() - layout.addWidget(self.revisionOrCommitBtn, 0) + bbarhbox.addWidget(self.revisionOrCommitBtn) + bbarhbox.addStretch(1)     # Message Frame   layout = QVBoxLayout()