diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-02-09 14:50:20 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-02-09 14:50:20 +0100 |
| commit | 2d0415e7e8866d056d245f76d32b991828a3b3c8 (patch) | |
| tree | 70b3d12e02c3d6cfc2b2d7ec373fe66aa6de2783 /lib/python | |
| parent | 0b8963f5c10d8adc880d2c4ac24e282d5d055497 (diff) | |
| parent | 718ab3c10238548b0daf968ee35867d5008b1a4a (diff) | |
| download | enigma2-2d0415e7e8866d056d245f76d32b991828a3b3c8.tar.gz enigma2-2d0415e7e8866d056d245f76d32b991828a3b3c8.zip | |
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index d0aa44b8..9e0e50af 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1024,7 +1024,13 @@ class InfoBarPVRState: def __playStateChanged(self, state): playstateString = state[3] self.pvrStateDialog["state"].setText(playstateString) - self._mayShow() + + # if we return into "PLAY" state, ensure that the dialog gets hidden if there will be no infobar displayed + if not config.usage.show_infobar_on_skip.value and self.seekstate == self.SEEK_STATE_PLAY: + self.pvrStateDialog.hide() + else: + self._mayShow() + class InfoBarTimeshiftState(InfoBarPVRState): def __init__(self): |
