aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2008-12-11 22:04:02 +0100
committerghost <andreas.monzner@multimedia-labs.de>2008-12-11 22:04:02 +0100
commit496d8f0140a603878516b45fc87b1978976bd5c4 (patch)
tree36d7d0659a715b4c6680e41e86814ebfd2bb9cd4 /lib/python
parent84347bead42c346b606fc9d95858688b96ec886f (diff)
downloadenigma2-496d8f0140a603878516b45fc87b1978976bd5c4.tar.gz
enigma2-496d8f0140a603878516b45fc87b1978976bd5c4.zip
PositionerSetup/plugin.py: fix modulation, fix nim selection list size
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py4
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 a45676f9..13871f9c 100644
--- a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py
@@ -547,7 +547,7 @@ class TunerScreen(ScanSetup):
self.scan_sat.inversion.index,
satpos,
self.scan_sat.system.index,
- self.scan_sat.modulation.index,
+ self.scan_sat.modulation.index == 1 and 2 or 1,
self.scan_sat.rolloff.index,
self.scan_sat.pilot.index)
elif tuning.type.value == "predefined_transponder":
@@ -562,7 +562,7 @@ class TunerScreen(ScanSetup):
class RotorNimSelection(Screen):
skin = """
<screen position="140,165" size="400,130" title="select Slot">
- <widget name="nimlist" position="20,10" size="360,75" />
+ <widget name="nimlist" position="20,10" size="360,100" />
</screen>"""
def __init__(self, session):