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

stable visdiff: fix tool selection signal (fixes #178)

Changeset ba505aa8edb4

Parent bc6557539e59

by Steve Borho

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

 
417
418
419
420
 
421
422
423
 
462
463
464
 
465
466
467
 
417
418
419
 
420
421
422
423
 
462
463
464
465
466
467
468
@@ -417,7 +417,7 @@
  callable = lambda row: self.fileSelect(row, repo, combo,   patterns, preferred)   list.currentRowChanged.connect(callable) - combo.currentIndexChanged.connect(self.toolSelect) + combo.currentIndexChanged['QString'].connect(self.toolSelect)     BB = QDialogButtonBox   bb = BB() @@ -462,6 +462,7 @@
  row = QString('%s %s' % (status, hglib.tounicode(f)))   self.list.addItem(row)   + @pyqtSlot(QString)   def toolSelect(self, tool):   'user selected a tool from the tool combo'   tool = hglib.fromunicode(tool)