diff options
| author | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-10-07 13:58:19 +0000 |
|---|---|---|
| committer | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-10-07 13:58:19 +0000 |
| commit | e06775bd7fd937db1148ecea6e162ad76821700e (patch) | |
| tree | 6573ca1df6891ee80edf588b44cf0f5c3dc090c3 /lib/python/Components | |
| parent | 4f1fab7b13be9d8d3fb013c14378264968502b2a (diff) | |
| download | enigma2-e06775bd7fd937db1148ecea6e162ad76821700e.tar.gz enigma2-e06775bd7fd937db1148ecea6e162ad76821700e.zip | |
allow default text in ConfigPassword
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 3b8ad01c..a70f0d47 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -764,7 +764,7 @@ class ConfigText(ConfigElement, NumericalTextInput): class ConfigPassword(ConfigText): def __init__(self, default = "", fixed_size = False, visible_width = False, censor = "*"): - ConfigText.__init__(self, default = "", fixed_size = fixed_size, visible_width = visible_width) + ConfigText.__init__(self, default = default, fixed_size = fixed_size, visible_width = visible_width) self.censor_char = censor self.hidden = True |
