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

overlay: use True/False in tortoisehg.overlayicons for consistency

Changeset f0e19333bdaf

Parent fb33ac88638d

by TK Soh

Changes to 2 files · Browse files at f0e19333bdaf Showing diff from parent fb33ac88638d Diff from another changeset...

 
86
87
88
89
90
91
 
 
 
92
93
94
 
86
87
88
 
 
 
89
90
91
92
93
94
@@ -86,9 +86,9 @@
  'The number of revisions to read and display in the'   ' changelog viewer in a single batch. Default: 500'),   ('Overlay Icons', 'tortoisehg.overlayicons', - ['enabled', 'disabled', 'localdisks'], - 'Disable/enable overlay icons in Explorer windows.' - ' Default: enabled')) + ['False', 'True', 'localdisks'], + 'Display overlay icons in Explorer windows.' + ' Default: True'))   self.tortoise_frame = self.add_page(notebook, 'TortoiseHG')   self.fill_frame(self.tortoise_frame, self._tortoise_info)  
 
157
158
159
160
 
161
162
163
 
157
158
159
 
160
161
162
163
@@ -157,7 +157,7 @@
  print "%s: repo overlayicons = " % path, repo_opts   is_netdrive = thgutil.netdrive_status(path) is not None   if (is_netdrive and 'localdisks' in global_opts) \ - or 'disabled' in repo_opts: + or 'False' in repo_opts:   print "%s: overlayicons disabled" % path   overlay_cache = {None : None}   cache_tick_count = win32api.GetTickCount()