aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-10-15 01:14:50 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-10-15 01:14:50 +0000
commit34a8d727fe9449391d58964d32f29589717527d5 (patch)
tree9ce3204e7f1cae8d5070cc27fb203afe488d4387 /lib/python/Components
parenta82613f85c96ca5c5bc0181ac3c073a927fbfd28 (diff)
downloadenigma2-34a8d727fe9449391d58964d32f29589717527d5.tar.gz
enigma2-34a8d727fe9449391d58964d32f29589717527d5.zip
change lower limits for usals-settings
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/NimManager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index 2086bee8..104f5f0a 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -177,8 +177,8 @@ def InitNimManager(nimmgr):
config.Nims[x].diseqcB = configElement(cname + "diseqcB",configSatlist, 130, nimmgr.satList);
config.Nims[x].diseqcC = configElement(cname + "diseqcC",configSatlist, 0, nimmgr.satList);
config.Nims[x].diseqcD = configElement(cname + "diseqcD",configSatlist, 0, nimmgr.satList);
- config.Nims[x].longitude = configElement(cname + "longitude",configSequence, [0,0], configsequencearg.get("FLOAT", [(1,90),(1,999)]));
- config.Nims[x].latitude = configElement(cname + "latitude",configSequence, [0,0], configsequencearg.get("FLOAT", [(1,90),(1,999)]));
+ config.Nims[x].longitude = configElement(cname + "longitude",configSequence, [0,0], configsequencearg.get("FLOAT", [(0,90),(0,999)]));
+ config.Nims[x].latitude = configElement(cname + "latitude",configSequence, [0,0], configsequencearg.get("FLOAT", [(0,90),(0,999)]));
#perhaps the instance of the slot is more useful?
config.Nims[x].configMode.addNotifier(boundFunction(nimConfigModeChanged,x))