fix a FIXME: show Hidden instead of a password

This commit is contained in:
Yann Leboulanger 2005-11-14 11:07:42 +00:00
parent 3b12546f0a
commit a8f3d466cc
1 changed files with 3 additions and 5 deletions

View File

@ -176,12 +176,10 @@ class AdvancedConfigurationWindow:
type = ''
if val[OPT_TYPE]:
type = val[OPT_TYPE][0]
value = val[OPT_VAL]
if name in ('password', 'gpgpassword'):
pass # FIXME: do not save Hidden as our pass!
# just opening once the advanced editor and then closing
# f$$cks it all up
#val[OPT_VAL] = _('Hidden') # override passwords with this string
model.append(iter, [name, val[OPT_VAL], type])
value = _('Hidden') # override passwords with this string
model.append(iter, [name, value, type])
def visible_func(self, model, iter):
str = self.entry.get_text().decode('utf-8')