diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-08-25 22:55:25 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-08-25 22:55:25 +0000 |
| commit | fb298c769ccf5cb29f8461cbef280c969c8f6e26 (patch) | |
| tree | 80b87f7bf201b40f75c16f7925867f2c61dcbd73 /lib/python/Screens/Setup.py | |
| parent | 7a7ecc4dc80279abb51cc8fbafa4055c8fef8d37 (diff) | |
| download | enigma2-fb298c769ccf5cb29f8461cbef280c969c8f6e26.tar.gz enigma2-fb298c769ccf5cb29f8461cbef280c969c8f6e26.zip | |
- add config slider
Diffstat (limited to 'lib/python/Screens/Setup.py')
| -rw-r--r-- | lib/python/Screens/Setup.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/python/Screens/Setup.py b/lib/python/Screens/Setup.py index 9f65daaa..de27ff5e 100644 --- a/lib/python/Screens/Setup.py +++ b/lib/python/Screens/Setup.py @@ -42,7 +42,11 @@ class Setup(Screen): if b == "": continue #add to configlist - list.append( (ItemText, b.controlType(b) ) ) + item = b.controlType(b) + + # the first b is the item itself, ignored by the configList. + # the second one is converted to string. + list.append( (ItemText, item) ) def keyOk(self): self["config"].handleKey(0) |
