diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-06-03 12:16:04 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-06-03 12:16:04 +0000 |
| commit | 1d927cd236d6e31e29f8b5049bc4ffb59a0245a5 (patch) | |
| tree | 2896131c979d4a53ff37303d7fcb96a95a8f864b /lib/python | |
| parent | 6c2d667582c7878d6c8b94f5bdac047c1ded9a78 (diff) | |
| download | enigma2-1d927cd236d6e31e29f8b5049bc4ffb59a0245a5.tar.gz enigma2-1d927cd236d6e31e29f8b5049bc4ffb59a0245a5.zip | |
do not put the same channel to history
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/ChannelSelection.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index b715ccc4..d4a52799 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -895,9 +895,9 @@ class ChannelSelection(ChannelSelectionBase, ChannelSelectionEdit, ChannelSelect nref = self.getCurrentSelection() if ref is None or ref != nref: self.session.nav.playService(nref) - self.saveRoot() - self.saveChannel() - self.addToHistory(nref) + self.saveRoot() + self.saveChannel() + self.addToHistory(nref) def addToHistory(self, ref): if self.servicePath is not None: |
