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

status: add a branchop button

Changeset b2752c675e8e

Parent 267121290968

by Steve Borho

Changes to one file · Browse files at b2752c675e8e Showing diff from parent 267121290968 Diff from another changeset...

 
46
47
48
 
 
 
49
50
51
 
 
52
53
54
 
46
47
48
49
50
51
52
53
 
54
55
56
57
58
@@ -46,9 +46,13 @@
  vbox = QVBoxLayout()   vbox.addWidget(frame, 0)   vbox.setMargin(0) + hbox = QHBoxLayout() + branchop = QPushButton('Branch: default') + hbox.addWidget(branchop)   msgcombo = QComboBox()   msgcombo.addItem('Recent commit messages...') - vbox.addWidget(msgcombo, 0) + hbox.addWidget(msgcombo, 1) + vbox.addLayout(hbox, 0)   msgte = QTextEdit()   msgte.setAcceptRichText(False)   vbox.addWidget(msgte, 1)