Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

status: keep selection state up to date

Changeset 9f6cf4c5d42c

Parent 02aaa4d701a5

by Steve Borho

Changes to one file · Browse files at 9f6cf4c5d42c Showing diff from parent 02aaa4d701a5 Diff from another changeset...

Change 1 of 3 Show Entire File hggtk/​status.py Stacked
 
486
487
488
489
490
491
492
 
559
560
561
562
563
564
565
566
 
585
586
587
 
 
588
589
590
 
486
487
488
 
489
490
491
 
558
559
560
 
 
561
562
563
 
582
583
584
585
586
587
588
589
@@ -486,7 +486,6 @@
  # If the status load failed, no reason to continue   if not self.reload_status():   raise util.Abort('could not load status') - self.auto_check()       def _displayed(self, widget, event): @@ -559,8 +558,6 @@
  file = util.localpath(file)   self.model.append([file in recheck, char, toutf(file), file, mst])   - self._update_check_count() -   selection = self.tree.get_selection()   selected = False   for row in model: @@ -585,6 +582,8 @@
  def reload_status(self):   if not self._ready: return False   success, outtext = self._hg_call_wrapper('Status', self._do_reload_status) + self.auto_check() + self._update_check_count()   return success