X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/51845a7b8ea8bad523b083d1564e1b907fbdc84e..63f8fba0e343ed772e81ce4015583e33a6bdc6e0:/lib/python/Components/UsageConfig.py diff --git a/lib/python/Components/UsageConfig.py b/lib/python/Components/UsageConfig.py index 027dc3ff..58051ccf 100644 --- a/lib/python/Components/UsageConfig.py +++ b/lib/python/Components/UsageConfig.py @@ -2,19 +2,8 @@ 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 + config.usage.quickzap_bouquet_change = configElement("config.usage.quickzap_bouquet_change", configSelection, 1, (("yes", _("yes")), ("no", _("no"))) )