Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

commit: clear cache of csinfo in parent bar

closes #870

It also needs to set a new reference to repo object.

Changeset 0b7674159f27

Parent 880fbec2da7b

by Yuki KODAMA

Changes to one file · Browse files at 0b7674159f27 Showing diff from parent 880fbec2da7b Diff from another changeset...

 
640
641
642
643
 
 
644
645
646
647
 
 
648
649
650
 
640
641
642
 
643
644
645
646
647
 
648
649
650
651
652
@@ -640,11 +640,13 @@
    def update_parent_labels(self):   ctxs, isheads, ismerge = self.get_head_info() - self.parent1_label.update(ctxs[0]) + self.parent1_label.info.clear_cache() + self.parent1_label.update(ctxs[0], repo=self.repo)   if not ismerge:   self.parent2_label.hide()   else: - self.parent2_label.update(ctxs[1]) + self.parent2_label.info.clear_cache() + self.parent2_label.update(ctxs[1], repo=self.repo)   self.parent2_label.show()     def thgreflow(self, window, textview):