diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2009-11-06 17:22:39 +0100 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2009-11-06 17:22:39 +0100 |
| commit | 56068e5ec25361c2a06eb9f0133eeebb32cf44c1 (patch) | |
| tree | c12307aec4c3c280c35a6377a65265819f24dd63 /lib/python | |
| parent | d66c36f6534f32c7362c45965051cf84ccf84ba9 (diff) | |
| download | enigma2-56068e5ec25361c2a06eb9f0133eeebb32cf44c1.tar.gz enigma2-56068e5ec25361c2a06eb9f0133eeebb32cf44c1.zip | |
fixes bug #258
some beautification of PositionerSetup code regarding the ConfigSatlist sorting
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py index fa533c0b..ea62550b 100644 --- a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py +++ b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py @@ -484,8 +484,8 @@ class TunerScreen(ScanSetup): self.updateTransponders() def updateTransponders(self): - if len(tuning.sat.choices): - transponderlist = nimmanager.getTransponders(int(tuning.sat.value)) + if len(tuning.sat.satList): + transponderlist = nimmanager.getTransponders(tuning.sat.orbital_position) tps = [] cnt=0 for x in transponderlist: |
