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

commit: move details button to left side of message combo

I think it looks better next to the branch operation button

Changeset b71a0c9bd0fa

Parent 10fb4273d1ab

by Steve Borho

Changes to one file · Browse files at b71a0c9bd0fa Showing diff from parent 10fb4273d1ab Diff from another changeset...

 
75
76
77
78
 
 
 
 
79
80
81
82
83
84
85
86
87
88
 
89
90
91
 
75
76
77
 
78
79
80
81
82
83
84
85
86
87
 
 
 
 
88
89
90
91
@@ -75,17 +75,17 @@
  self.branchbutton = branchbutton   self.branchop = None   hbox.addWidget(branchbutton) - self.buttonHBox = hbox + + self.detailsbutton = QPushButton(_('Details')) + 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.detailsbutton = QPushButton(_('Details')) - self.detailsbutton.pressed.connect(self.details) - self.buttonHBox.addWidget(self.detailsbutton) + self.buttonHBox = hbox     self.parentvbox = QVBoxLayout()   self.parentlabels = [QLabel('<b>Parent:</b>')]