diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-07-11 13:56:52 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-07-11 13:56:52 +0000 |
| commit | 2080cf6c4aa2d89b1f08c28968724be5dc71cf09 (patch) | |
| tree | fe5b2c30814c66d084a7bee5a7dbf469e55c8970 /lib/python | |
| parent | 52fc81bad61656e6591c5b4c20d781a1bda817ae (diff) | |
| download | enigma2-2080cf6c4aa2d89b1f08c28968724be5dc71cf09.tar.gz enigma2-2080cf6c4aa2d89b1f08c28968724be5dc71cf09.zip | |
allow overriding showAfterSeek if you don't use InfoBarShowHide
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index db77bec8..9fd676e9 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -667,8 +667,8 @@ class InfoBarSeek: self.__seekableStatusChanged() def showAfterSeek(self): - if isinstance(self.screen, InfoBarShowHide): - self.screen.doShow() + if isinstance(self, InfoBarShowHide): + self.doShow() def up(self): pass |
