aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-25 21:58:42 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-25 21:58:42 +0000
commit7a55b56227014d8e6cff6773946d19219b4599f8 (patch)
treedcf48c76bfc84fa811bcd201b6922304f4fd7138 /lib/python
parenta274f72e1fcbe404d1e68c605f21453123287fbd (diff)
downloadenigma2-7a55b56227014d8e6cff6773946d19219b4599f8.tar.gz
enigma2-7a55b56227014d8e6cff6773946d19219b4599f8.zip
fix 'start'/'stop'/'select other' subtitles
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/Extensions/Makefile.am2
-rw-r--r--lib/python/Screens/InfoBarGenerics.py10
2 files changed, 7 insertions, 5 deletions
diff --git a/lib/python/Plugins/Extensions/Makefile.am b/lib/python/Plugins/Extensions/Makefile.am
index 576ca701..4b59325e 100644
--- a/lib/python/Plugins/Extensions/Makefile.am
+++ b/lib/python/Plugins/Extensions/Makefile.am
@@ -1,3 +1,3 @@
-SUBDIRS = TuxboxPlugins WebInterface FileManager CutListEditor ZappingAlternatives FritzCall
+SUBDIRS = TuxboxPlugins FileManager CutListEditor ZappingAlternatives
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index b61436c4..f2f33473 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -1146,10 +1146,12 @@ class InfoBarSubtitles:
return "Enable Subtitles: " + name
def enableSubtitle(self, subtitles):
- print "enable subtitles", subtitles
- self.selected_subtitle = subtitles
- self.subtitles_enabled = True
-
+ if self.selected_subtitle != subtitles:
+ print "enable subtitles", subtitles
+ self.subtitles_enabled = False
+ self.selected_subtitle = subtitles
+ self.subtitles_enabled = True
+
def subtitlesEnabled(self):
return self.subtitles_enabled