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 directory diff buttons (fixes #181)

Changeset 0b995f878644

Parent edc877541d23

by Wagner Bruna

Changes to one file · Browse files at 0b995f878644 Showing diff from parent edc877541d23 Diff from another changeset...

 
554
555
556
557
 
558
559
560
 
565
566
567
568
 
569
570
571
 
576
577
578
579
 
580
581
582
 
554
555
556
 
557
558
559
560
 
565
566
567
 
568
569
570
571
 
576
577
578
 
579
580
581
582
@@ -554,7 +554,7 @@
  args = ctx1b and self.mergeopts or self.diffopts   launchtool(self.diffpath, args, replace, False)   - def p1dirdiff(self, button): + def p1dirdiff(self):   dir1a, dir1b, dir2 = self.dirs   rev1a, rev1b, rev2 = self.revs   ctx1a, ctx1b, ctx2 = self.ctxs @@ -565,7 +565,7 @@
  parent2='', plabel2='', clabel=rev2, child=dir2)   launchtool(self.diffpath, self.diffopts, replace, False)   - def p2dirdiff(self, button): + def p2dirdiff(self):   dir1a, dir1b, dir2 = self.dirs   rev1a, rev1b, rev2 = self.revs   ctx1a, ctx1b, ctx2 = self.ctxs @@ -576,7 +576,7 @@
  parent2='', plabel2='', clabel=rev2, child=dir2)   launchtool(self.diffpath, self.diffopts, replace, False)   - def threewaydirdiff(self, button): + def threewaydirdiff(self):   dir1a, dir1b, dir2 = self.dirs   rev1a, rev1b, rev2 = self.revs   ctx1a, ctx1b, ctx2 = self.ctxs