aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-11-19 08:48:37 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-11-19 08:48:37 +0100
commitffd8a32dea13249abcf4f53ae6c60025b2063899 (patch)
treee511152ba824620404790e4921a42b151d9e7367 /lib/python/Components
parent7c85ede71f2779a544fb9094d5ea2a170ee4a76b (diff)
downloadenigma2-ffd8a32dea13249abcf4f53ae6c60025b2063899.tar.gz
enigma2-ffd8a32dea13249abcf4f53ae6c60025b2063899.zip
config.py: fix set/getValue for ConfigSelectionNumber
Diffstat (limited to 'lib/python/Components')
-rwxr-xr-xlib/python/Components/config.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py
index 789ec32f..1f8709b3 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):