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

commit: move branch action before "Copy message" to make it more prominent

Changeset 749692573295

Parent 2e92e61698ed

by Steve Borho

Changes to one file · Browse files at 749692573295 Showing diff from parent 2e92e61698ed Diff from another changeset...

 
209
210
211
 
 
 
 
 
 
 
212
213
214
 
216
217
218
219
220
221
222
223
224
225
226
227
228
 
209
210
211
212
213
214
215
216
217
218
219
220
221
 
223
224
225
 
 
 
 
 
 
 
226
227
228
@@ -209,6 +209,13 @@
  tbar = QToolBar(_("Commit Dialog Toolbar"), self)   hbox.addWidget(tbar)   + self.branchbutton = tbar.addAction(_('Branch: ')) + font = self.branchbutton.font() + font.setBold(True) + self.branchbutton.setFont(font) + self.branchbutton.triggered.connect(self.branchOp) + self.branchop = None +   self.recentMessagesButton = QToolButton(   text=_('Copy message'),   popupMode=QToolButton.InstantPopup, @@ -216,13 +223,6 @@
  tbar.addWidget(self.recentMessagesButton)   self.updateRecentMessages()   - self.branchbutton = tbar.addAction(_('Branch: ')) - font = self.branchbutton.font() - font.setBold(True) - self.branchbutton.setFont(font) - self.branchbutton.triggered.connect(self.branchOp) - self.branchop = None -   tbar.addAction(_('Options')).triggered.connect(self.details)   tbar.setIconSize(QSize(16,16))