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

iconoverlay: fix overlay IDs

I don't think there's any reason to include deleted and removed states,
since by their nature those files won't exist.

Changeset 6d8b76521045

Parent 3240c347b1f0

by Steve Borho

Changes to one file · Browse files at 6d8b76521045 Showing diff from parent 3240c347b1f0 Diff from another changeset...

 
93
94
95
96
97
98
99
100
101
102
103
 
 
 
 
 
 
93
94
95
 
 
 
 
 
 
 
 
96
97
98
99
100
@@ -93,11 +93,8 @@
  globals()[classname] = cls    _overlay_classes = [] -THG_CLSID = "{4D0F33E1-654C-4A1B-9BE8-E47A98752BAB}" -modified = cachethg.REMOVED + cachethg.DELETED + cachethg.MODIFIED - -make_icon_overlay("Changed", "Modified", modified, THG_CLSID) -make_icon_overlay("Unchanged", "Normal", cachethg.UNCHANGED, THG_CLSID) -make_icon_overlay("Added", "Added", cachethg.ADDED, THG_CLSID) -make_icon_overlay("Ignored", "Ignored", cachethg.IGNORED, THG_CLSID) -make_icon_overlay("Conflict", "Conflict", cachethg.UNRESOLVED, THG_CLSID) +make_icon_overlay("Changed", "Modified", cachethg.MODIFIED, "{4D0F33E1-654C-4A1B-9BE8-E47A98752BAB}") +make_icon_overlay("Unchanged", "Normal", cachethg.UNCHANGED, "{4D0F33E2-654C-4A1B-9BE8-E47A98752BAB}") +make_icon_overlay("Added", "Added", cachethg.ADDED, "{4D0F33E3-654C-4A1B-9BE8-E47A98752BAB}") +make_icon_overlay("Ignored", "Ignored", cachethg.IGNORED, "{4D0F33E4-654C-4A1B-9BE8-E47A98752BAB}") +make_icon_overlay("Conflict", "Conflict", cachethg.UNRESOLVED, "{4D0F33E5-654C-4A1B-9BE8-E47A98752BAB}")