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

hggtk: remove update_thgstatus calls

Changeset 384d2c94ca2c

Parent d1dc0a6efe79

by Adrian Buehlmann

Changes to 5 files · Browse files at 384d2c94ca2c Showing diff from parent d1dc0a6efe79 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​clone.py Stacked
 
301
302
303
304
305
306
307
 
301
302
303
 
304
305
306
@@ -301,7 +301,6 @@
  self._close_button.grab_focus()     if dlg.return_code() == 0: - shlib.update_thgstatus(self.ui, dest, wait=True)   shlib.shell_notify([dest])    def run(_ui, *pats, **opts):
Change 1 of 2 Show Entire File hggtk/​commit.py Stacked
 
408
409
410
411
412
413
414
 
506
507
508
509
510
511
512
 
408
409
410
 
411
412
413
 
505
506
507
 
508
509
510
@@ -408,7 +408,6 @@
  _('No committable files selected'), self).run()   return   self.reload_status() - shlib.update_thgstatus(self.ui, self.repo.root, wait=True)   files = [self.repo.wjoin(x) for x in commit_list]   shlib.shell_notify(files)   @@ -506,7 +505,6 @@
  if stat not in '?!' or self.should_addremove([file]):   self.hg_commit([file])   self.reload_status() - shlib.update_thgstatus(self.ui, self.repo.root, wait=True)   shlib.shell_notify([self.repo.wjoin(file)])   return True  
Change 1 of 1 Show Entire File hggtk/​hginit.py Stacked
 
164
165
166
167
168
169
170
 
164
165
166
 
167
168
169
@@ -164,7 +164,6 @@
  except:   pass   - shlib.update_thgstatus(u, dest, wait=True)   shlib.shell_notify(dest)     dialog.info_dialog(self, _('New repository created'),
Change 1 of 1 Show Entire File hggtk/​hgtk.py Stacked
 
236
237
238
239
240
241
242
 
236
237
238
 
239
240
241
@@ -236,7 +236,6 @@
  """add files"""   from mercurial import dispatch as _dispatch   _dispatch.dispatch(['add'] + list(pats)) - shlib.update_thgstatus(ui, paths.find_root())   shlib.shell_notify([os.getcwd()])    def thgstatus(ui, *pats, **opts):
Change 1 of 5 Show Entire File hggtk/​status.py Stacked
 
808
809
810
811
812
813
814
 
827
828
829
830
831
832
833
 
845
846
847
848
849
850
851
 
1145
1146
1147
1148
1149
1150
1151
 
1173
1174
1175
1176
1177
1178
1179
 
808
809
810
 
811
812
813
 
826
827
828
 
829
830
831
 
843
844
845
 
846
847
848
 
1142
1143
1144
 
1145
1146
1147
 
1169
1170
1171
 
1172
1173
1174
@@ -808,7 +808,6 @@
  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()     @@ -827,7 +826,6 @@
  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()     @@ -845,7 +843,6 @@
  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_sel_changed(self, selection): @@ -1145,7 +1142,6 @@
  if not dlg or 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()   @@ -1173,7 +1169,6 @@
  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()