Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

settings: default-value combo boxes should not read/write history

Changeset fd245162f665

Parent 8fea859e9f16

by Steve Borho

Changes to one file · Browse files at fd245162f665 Showing diff from parent 8fea859e9f16 Diff from another changeset...

 
156
157
158
 
159
160
161
162
163
 
164
165
166
 
156
157
158
159
160
161
162
163
164
165
166
167
168
@@ -156,11 +156,13 @@
 def genDefaultCombo(opts, defaults=[]):   'user must select from a list'   opts['defaults'] = defaults + opts['nohist'] = True   return SettingsCombo(**opts)    def genBoolCombo(opts):   'true, false, unspecified'   opts['defaults'] = ['True', 'False'] + opts['nohist'] = True   return SettingsCombo(**opts)    def genDeferredCombo(opts, func):