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

hgtk: call shell_notify() after dispatch

Changeset d82692de648b

Parent f64d63c55a65

by Steve Borho

Changes to one file · Browse files at d82692de648b Showing diff from parent f64d63c55a65 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​hgtk.py Stacked
 
26
27
28
29
 
30
31
32
 
218
219
220
 
221
222
223
224
225
 
226
227
228
 
26
27
28
 
29
30
31
32
 
218
219
220
221
222
223
224
225
226
227
228
229
230
@@ -26,7 +26,7 @@
   nonrepo_commands = 'userconfig clone debugcomplete init about help version'   -# Add TortoiseHg signals, hooked to key accelerators in shlib +# Add TortoiseHg signals, hooked to key accelerators in gtklib  for sig in ('copy-clipboard', 'thg-diff', 'thg-parent'):   gobject.signal_new(sig, gtk.TreeView,   gobject.SIGNAL_ACTION, gobject.TYPE_NONE, ()) @@ -218,11 +218,13 @@
  """add files"""   from mercurial import dispatch   dispatch.dispatch(['add'] + list(pats)) + shlib.shell_notify([os.getcwd()])    def thgstatus(ui, *pats, **opts):   """hg thgstatus"""   from mercurial import dispatch   dispatch.dispatch(['thgstatus']) + shlib.shell_notify([os.getcwd()])    def clone(ui, *pats, **opts):   """clone tool"""