Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

hggtk/status: add calls to shlib.update_thgstatus

Changeset 3dfbd2ebab47

Parent 1712fbdc24cf

by Adrian Buehlmann

Changes to one file · Browse files at 3dfbd2ebab47 Showing diff from parent 1712fbdc24cf Diff from another changeset...

Change 1 of 5 Show Entire File hggtk/​status.py Stacked
 
759
760
761
 
762
763
764
 
777
778
779
 
780
781
782
 
794
795
796
 
797
798
799
 
1103
1104
1105
 
1106
1107
1108
 
1129
1130
1131
 
1132
1133
1134
 
759
760
761
762
763
764
765
 
778
779
780
781
782
783
784
 
796
797
798
799
800
801
802
 
1106
1107
1108
1109
1110
1111
1112
 
1133
1134
1135
1136
1137
1138
1139
@@ -759,6 +759,7 @@
  commands.remove(self.ui, self.repo, *wfiles, **removeopts)   success, outtext = self._hg_call_wrapper('Remove', dohgremove)   if success: + shlib.update_thgstatus(self.ui, self.repo.root)   self.reload_status()     @@ -777,6 +778,7 @@
  commands.rename(self.ui, self.repo, *wfiles, **moveopts)   success, outtext = self._hg_call_wrapper('Move', dohgmove)   if success: + shlib.update_thgstatus(self.ui, self.repo.root, wait=True)   self.reload_status()     @@ -794,6 +796,7 @@
  commands.copy(self.ui, self.repo, *wfiles, **cmdopts)   success, outtext = self._hg_call_wrapper('Copy', dohgcopy)   if success: + shlib.update_thgstatus(self.ui, self.repo.root, wait=True)   self.reload_status()     def _merge_tree_selection_changed(self, selection, force): @@ -1103,6 +1106,7 @@
  if dlg.run() == gtk.RESPONSE_YES:   success, outtext = self._hg_call_wrapper('Revert', dohgrevert)   if success: + shlib.update_thgstatus(self.ui, self.repo.root, wait=True)   shlib.shell_notify(wfiles)   self.reload_status()   @@ -1129,6 +1133,7 @@
  commands.add(self.ui, self.repo, *wfiles, **addopts)   success, outtext = self._hg_call_wrapper('Add', dohgadd)   if success: + shlib.update_thgstatus(self.ui, self.repo.root)   shlib.shell_notify(wfiles)   self.reload_status()