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

menuthg: show commit when mq patch is applied

Changeset b4e0431d279c

Parent a1592c02c80b

by Simon Heimberg

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

 
209
210
211
212
 
213
214
215
216
 
217
218
219
 
209
210
211
 
212
213
214
215
 
216
217
218
219
@@ -209,11 +209,11 @@
    changed = bool(states & set([cachethg.ADDED, cachethg.MODIFIED]))   modified = cachethg.MODIFIED in states - tracked = changed or cachethg.MODIFIED in states + tracked = changed or modified   new = bool(states & set([cachethg.UNKNOWN, cachethg.IGNORED]))     menu = thg_menu(repo.ui, self.name) - if changed or cachethg.UNKNOWN in states: + if changed or cachethg.UNKNOWN in states or 'qtip' in repo['.'].tags():   menu.add_menu(_("HG Commit..."),   _("Commit changes in repository"),   'commit', icon="menucommit.ico")