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

mq: add a toolbar button for configuring guards on a patch

Changeset 07b0268b5110

Parent 818f76d9d7a5

by Steve Borho

Changes to one file · Browse files at 07b0268b5110 Showing diff from parent 818f76d9d7a5 Diff from another changeset...

 
72
73
74
 
 
 
75
76
77
 
87
88
89
 
90
91
92
 
72
73
74
75
76
77
78
79
80
 
90
91
92
93
94
95
96
@@ -72,6 +72,9 @@
  self.qpushBtn = tb = QToolButton()   tb.setIcon(qtlib.geticon('qpush'))   tb.setToolTip(_('Apply one patch')) + self.setGuardsBtn = tb = QToolButton() + #tb.setIcon(qtlib.geticon('qpush')) + tb.setToolTip(_('Configure guards for selected patch'))   self.qpushMoveBtn = tb = QToolButton()   #tb.setIcon(qtlib.geticon('qpush'))   tb.setToolTip(_('Apply selected patch next (change queue order)')) @@ -87,6 +90,7 @@
  qtbarhbox.addWidget(self.qpushAllBtn)   qtbarhbox.addWidget(self.qpushBtn)   qtbarhbox.addStretch(1) + qtbarhbox.addWidget(self.setGuardsBtn)   qtbarhbox.addWidget(self.qpushMoveBtn)   qtbarhbox.addWidget(self.qdeleteBtn)   qtbarhbox.addStretch(1)