diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-06 23:52:30 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-06 23:52:30 +0000 |
| commit | 00e833f8ab8c769cc802a050810f4976c99f9a5f (patch) | |
| tree | 3478a03ac5a4dbc0fdfc428f9cb45d0f938491bb /lib/python | |
| parent | 29b8dff1abdf1ca42372ec26c090758aa4ea7a06 (diff) | |
| download | enigma2-00e833f8ab8c769cc802a050810f4976c99f9a5f.tar.gz enigma2-00e833f8ab8c769cc802a050810f4976c99f9a5f.zip | |
this fix has side-effects... so we reverse it which breaks initial status again
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/ChannelSelection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index 9b41b2b2..03182ab8 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -368,7 +368,7 @@ class ChannelSelection(ChannelSelectionBase, ChannelSelectionEdit): def onShow(self): ref = self.session.nav.getCurrentlyPlayingServiceReference() - if ref != None and ref.valid() and ref.getPath() == "": + if ref.valid() and ref.getPath() == "": self.servicelist.setPlayableIgnoreService(ref) else: self.servicelist.setPlayableIgnoreService(eServiceReference()) |
