diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-10-15 01:14:50 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-10-15 01:14:50 +0000 |
| commit | 34a8d727fe9449391d58964d32f29589717527d5 (patch) | |
| tree | 9ce3204e7f1cae8d5070cc27fb203afe488d4387 /lib/python | |
| parent | a82613f85c96ca5c5bc0181ac3c073a927fbfd28 (diff) | |
| download | enigma2-34a8d727fe9449391d58964d32f29589717527d5.tar.gz enigma2-34a8d727fe9449391d58964d32f29589717527d5.zip | |
change lower limits for usals-settings
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/NimManager.py | 4 |
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)) |
