aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Standby.py
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2010-05-30 23:57:52 +0200
committerFraxinas <andreas.frisch@multimedia-labs.de>2010-05-30 23:57:52 +0200
commitd37c356fa54be2fd93a92566c686a468a741cd0f (patch)
tree6a78e41a134825ea231409e2dc82ebe2a09cd425 /lib/python/Screens/Standby.py
parent9529d3ec43c9d81811dd5efa4c998821df90c9b5 (diff)
parentec485b760f7aa361870421587055bcd929df7729 (diff)
downloadenigma2-d37c356fa54be2fd93a92566c686a468a741cd0f.tar.gz
enigma2-d37c356fa54be2fd93a92566c686a468a741cd0f.zip
Merge branch 'experimental' of git.opendreambox.org:/git/enigma2 into experimental
Diffstat (limited to 'lib/python/Screens/Standby.py')
-rw-r--r--lib/python/Screens/Standby.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Screens/Standby.py b/lib/python/Screens/Standby.py
index 406b87cb..1a7ebbd1 100644
--- a/lib/python/Screens/Standby.py
+++ b/lib/python/Screens/Standby.py
@@ -3,6 +3,7 @@ from Components.ActionMap import ActionMap
from Components.config import config
from Components.AVSwitch import AVSwitch
from Components.SystemInfo import SystemInfo
+from GlobalActions import globalActionMap
from enigma import eDVBVolumecontrol
inStandby = None
@@ -41,6 +42,8 @@ class Standby(Screen):
"power": self.Power
}, -1)
+ globalActionMap.setEnabled(False)
+
#mute adc
self.setMute()
@@ -72,6 +75,7 @@ class Standby(Screen):
elif self.paused_service:
self.paused_service.unPauseService()
self.session.screen["Standby"].boolean = False
+ globalActionMap.setEnabled(True)
def __onFirstExecBegin(self):
global inStandby