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

stable mq: add a refresh toolbutton for the file list and file view

Changeset 9f34fd789b19

Parent 0042c6bfc08f

by Steve Borho

Changes to one file · Browse files at 9f34fd789b19 Showing diff from parent 0042c6bfc08f Diff from another changeset...

 
130
131
132
 
 
 
133
134
 
135
136
137
 
853
854
855
 
 
856
857
858
 
130
131
132
133
134
135
136
137
138
139
140
141
 
857
858
859
860
861
862
863
864
@@ -130,8 +130,12 @@
  mtbarhbox.setContentsMargins(0, 0, 0, 0)   self.newCheckBox = QCheckBox(_('New Patch'))   self.patchNameLE = QLineEdit() + self.refreshtb = QToolButton(self) + self.refreshtb.clicked.connect(self.refreshFileListWidget) + self.refreshtb.setIcon(qtlib.geticon('view-refresh'))   mtbarhbox.addWidget(self.newCheckBox)   mtbarhbox.addWidget(self.patchNameLE, 1) + mtbarhbox.addWidget(self.refreshtb)     self.messageEditor = commit.MessageEntry(self)   self.messageEditor.installEventFilter(qscilib.KeyPressInterceptor(self)) @@ -853,6 +857,8 @@
  self.outopts = outopts   QDialog.accept(self)   + +  def run(ui, *pats, **opts):   from tortoisehg.util import paths   from tortoisehg.hgqt import thgrepo