From: Andreas Monzner Date: Thu, 18 Jan 2007 00:17:10 +0000 (+0000) Subject: switch of infobarseek actions by default, lower prio for show/hide actions X-Git-Tag: 2.6.0~2437 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/983baf2d5c358faf34f4bc55930b0ca168114528?ds=sidebyside switch of infobarseek actions by default, lower prio for show/hide actions --- 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)