aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-31 09:55:18 +0100
committerthedoc <thedoc@atom.(none)>2010-01-01 15:25:47 +0100
commit1bc8dc3d42231058a3dc71bcb72f212224daeeec (patch)
tree938a25d1f4958cf070de92dee891feaaf76e2aac
parentb3813095d2b2d9b546eeb075de3bdb78e48987e6 (diff)
downloadenigma2-1bc8dc3d42231058a3dc71bcb72f212224daeeec.tar.gz
enigma2-1bc8dc3d42231058a3dc71bcb72f212224daeeec.zip
InfoBarGenerics.py: rename timer to fix automatic infobar hide after channel change
-rw-r--r--lib/python/Screens/InfoBarGenerics.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index a08621c8..6dd80533 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -51,8 +51,8 @@ class InfoBarDish:
class InfoBarUnhandledKey:
def __init__(self):
self.unhandledKeyDialog = self.session.instantiateDialog(UnhandledKey)
- self.hideTimer = eTimer()
- self.hideTimer.callback.append(self.unhandledKeyDialog.hide)
+ self.hideUnhandledKeySymbolTimer = eTimer()
+ self.hideUnhandledKeySymbolTimer.callback.append(self.unhandledKeyDialog.hide)
self.checkUnusedTimer = eTimer()
self.checkUnusedTimer.callback.append(self.checkUnused)
self.onLayoutFinish.append(self.unhandledKeyDialog.hide)
@@ -79,7 +79,7 @@ class InfoBarUnhandledKey:
def checkUnused(self):
if self.flags == self.uflags:
self.unhandledKeyDialog.show()
- self.hideTimer.start(2000, True)
+ self.hideUnhandledKeySymbolTimer.start(2000, True)
class InfoBarShowHide:
""" InfoBar show/hide control, accepts toggleShow and hide actions, might start