diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-03-01 19:37:57 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-03-01 19:38:25 +0100 |
| commit | 5e037c72eaaca8aaaad9591e31569208b8d36381 (patch) | |
| tree | 3334539f8533d06ff851e95e2a932243c17a9f9c /lib/python/Plugins/SystemPlugins/PositionerSetup | |
| parent | 75266d70e4555902631c7e87a2ebd959fafb9b93 (diff) | |
| download | enigma2-5e037c72eaaca8aaaad9591e31569208b8d36381.tar.gz enigma2-5e037c72eaaca8aaaad9591e31569208b8d36381.zip | |
fix no more turning positioner after leave positioner setup in some cases
this fixes bug #321
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/PositionerSetup')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py index fa533c0b..3cc9e751 100644 --- a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py +++ b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py @@ -77,7 +77,7 @@ class PositionerSetup(Screen): self.frontendStatus = { } self.diseqc = Diseqc(self.frontend) - self.tuner = Tuner(self.frontend) + self.tuner = Tuner(self.frontend, True) #True means we dont like that the normal sec stuff sends commands to the rotor! tp = ( cur.get("frequency", 0) / 1000, cur.get("symbol_rate", 0) / 1000, |
