Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc1, 0.4rc2, and 0.4rc3

overlay: show icons unless 'disabled'

Changeset 39ad09ae910c

Parent 81aa30e7e43c

by TK Soh

Changes to one file · Browse files at 39ad09ae910c Showing diff from parent 81aa30e7e43c Diff from another changeset...

 
42
43
44
45
46
47
 
 
 
48
49
50
 
42
43
44
 
 
 
45
46
47
48
49
50
@@ -42,9 +42,9 @@
   def get_show_icons():   global show_overlay_icons - val = ui.ui().config('tortoisehg', 'overlayicons', "enabled") - show_overlay_icons = val == 'enabled' - print "show_icons = ", show_overlay_icons + overlayicons = ui.ui().config('tortoisehg', 'overlayicons', '') + print "tortoisehg.overlayicons = ", overlayicons + show_overlay_icons = overlayicons != 'disabled'    def subdirs(p):   oldp = ""