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

commit: reorder elements in top hbar

Moves commit message history combo to be lined up with commit message widget's
left edge, and moves option buttons next to the commit button when used as a
task tab.

Changeset 5c788091e7e4

Parent c388ab8224db

by Steve Borho

Changes to one file · Browse files at 5c788091e7e4 Showing diff from parent c388ab8224db Diff from another changeset...

 
120
121
122
 
 
 
 
 
123
124
125
 
130
131
132
133
134
135
136
137
138
139
 
120
121
122
123
124
125
126
127
128
129
130
 
135
136
137
 
 
 
 
138
139
140
@@ -120,6 +120,11 @@
  hbox = QHBoxLayout()   hbox.setMargin(0)   hbox.setContentsMargins(*(0,)*4) + + msgcombo = MessageHistoryCombo() + msgcombo.activated.connect(self.msgSelected) + hbox.addWidget(msgcombo, 1) +   branchbutton = QPushButton(_('Branch: '))   branchbutton.pressed.connect(self.branchOp)   self.branchbutton = branchbutton @@ -130,10 +135,6 @@
  self.detailsbutton.pressed.connect(self.details)   hbox.addWidget(self.detailsbutton)   - msgcombo = MessageHistoryCombo() - msgcombo.activated.connect(self.msgSelected) - hbox.addWidget(msgcombo, 1) - hbox.addSpacing(2)   vbox.addLayout(hbox, 0)   self.buttonHBox = hbox