diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-11-19 08:48:37 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-11-19 08:49:29 +0100 |
| commit | 3823b59986d6d47a8ca4b5db642c426f2e2b2652 (patch) | |
| tree | 9ec5439a7fc51863ea6e04bd2a2f637d7497770f /lib/python/Components/config.py | |
| parent | 056c90325625b81429b3892c7cddb71f8862e97d (diff) | |
| download | enigma2-3823b59986d6d47a8ca4b5db642c426f2e2b2652.tar.gz enigma2-3823b59986d6d47a8ca4b5db642c426f2e2b2652.zip | |
config.py: fix set/getValue for ConfigSelectionNumber
Diffstat (limited to 'lib/python/Components/config.py')
| -rwxr-xr-x | lib/python/Components/config.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 876e3a34..a6007b10 100755 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -1034,13 +1034,13 @@ class ConfigSelectionNumber(ConfigSelection): step += stepwidth ConfigSelection.__init__(self, choices, default) - + def getValue(self): - return int(self.text) + return int(ConfigSelection.getValue(self)) def setValue(self, val): - self.text = str(val) - + ConfigSelection.setValue(self, str(val)) + def handleKey(self, key): if not self.wraparound: if key == KEY_RIGHT: @@ -1050,8 +1050,6 @@ class ConfigSelectionNumber(ConfigSelection): if self.choices.index(self.value) == 0: return ConfigSelection.handleKey(self, key) - - class ConfigNumber(ConfigText): def __init__(self, default = 0): |
