aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-31 09:55:18 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-31 10:18:25 +0100
commit805a0a4b65925371d4498c9b4cc6adf37c9bedde (patch)
treefd53db6c008538adac1d980977db487a1ec7a84d /lib/python
parent9e205508ab4462cac81f7b85447c7ba907a59c99 (diff)
downloadenigma2-805a0a4b65925371d4498c9b4cc6adf37c9bedde.tar.gz
enigma2-805a0a4b65925371d4498c9b4cc6adf37c9bedde.zip
InfoBarGenerics.py: rename timer to fix automatic infobar hide after channel change
Diffstat (limited to 'lib/python')
-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 471b2510..7ae0b123 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