aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/UsageConfig.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-01-19 18:43:25 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-01-19 18:43:25 +0000
commit92c581769db1ebef1325d175e3b610be25317af1 (patch)
tree38f963d80de76262bed027221e903bfbdc047804 /lib/python/Components/UsageConfig.py
parenta2899e59b018d391385594b9c0197dd53a5e30e5 (diff)
downloadenigma2-92c581769db1ebef1325d175e3b610be25317af1.tar.gz
enigma2-92c581769db1ebef1325d175e3b610be25317af1.zip
make Multi Bouquets swich useable
Diffstat (limited to 'lib/python/Components/UsageConfig.py')
-rw-r--r--lib/python/Components/UsageConfig.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/lib/python/Components/UsageConfig.py b/lib/python/Components/UsageConfig.py
index 027dc3ff..779f5cf3 100644
--- a/lib/python/Components/UsageConfig.py
+++ b/lib/python/Components/UsageConfig.py
@@ -2,19 +2,9 @@ from config import *
import os
from enigma import *
-from Screens.ChannelSelection import USE_MULTIBOUQUETS
-global USE_MULTIBOUQUETS
-
def InitUsageConfig():
config.usage = ConfigSubsection();
config.usage.epgtoggle = configElement("config.usage.epgtoggle", configSelection, 1, (("yes", _("yes")), ("no", _("no"))) )
config.usage.showdish = configElement("config.usage.showdish", configSelection, 1, (("yes", _("yes")), ("no", _("no"))) )
config.usage.multibouquet = configElement("config.usage.multibouquet", configSelection, 1, (("yes", _("yes")), ("no", _("no"))) )
-
- def setMultiBouquet(configElement):
- if currentConfigSelectionElement(configElement) == "no":
- USE_MULTIBOUQUETS = False
- else:
- USE_MULTIBOUQUETS = True
-
- config.usage.multibouquet.addNotifier(setMultiBouquet); \ No newline at end of file
+