aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-18 00:17:10 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-18 00:17:10 +0000
commit983baf2d5c358faf34f4bc55930b0ca168114528 (patch)
treec517e759dd7da4806ce3e7b5346d7bfc6f3d8977 /lib/python
parent9a8c3eab7a0823b5dfc6111f07a04cf05d00b57b (diff)
downloadenigma2-983baf2d5c358faf34f4bc55930b0ca168114528.tar.gz
enigma2-983baf2d5c358faf34f4bc55930b0ca168114528.zip
switch of infobarseek actions by default, lower prio for show/hide actions
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 31108c8a..c7fce347 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -66,7 +66,7 @@ class InfoBarShowHide:
{
"toggleShow": self.toggleShow,
"hide": self.hide,
- })
+ }, 1) # lower prio to make it possible to override ok and cancel..
self.__state = self.STATE_SHOWN
self.__locked = 0
@@ -609,6 +609,8 @@ class InfoBarSeek:
}, prio=-1)
# give them a little more priority to win over color buttons
+ self["SeekActions"].setEnabled(False)
+
self.seekstate = self.SEEK_STATE_PLAY
self.onClose.append(self.delTimer)