diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-10-12 00:25:32 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-10-12 00:25:32 +0000 |
| commit | bd9b9d79572ecb649b26f86dd6bb07d5e6f20766 (patch) | |
| tree | 5796e8104563771de4ba2c20b6c87854031fafd5 /lib/python/Components | |
| parent | 97b7554abc88ade4b89a804ac3efeb7ead192009 (diff) | |
| download | enigma2-bd9b9d79572ecb649b26f86dd6bb07d5e6f20766.tar.gz enigma2-bd9b9d79572ecb649b26f86dd6bb07d5e6f20766.zip | |
fix boundaries of configSequence input
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/config.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 4cdd359a..5a92f076 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -118,8 +118,7 @@ class configSequence: self.markedPos = 0 def checkValues(self): - maxPos = len(self.parent.value) * self.parent.vals[1] - print maxPos + maxPos = len(self.parent.value) * len(self.parent.vals[1]) + len(self.parent.value) if self.markedPos >= maxPos: self.markedPos = maxPos - 1 |
