diff --git a/lib/python/Components/UsageConfig.py b/lib/python/Components/UsageConfig.py index 2ae33c72b89..98d5a74a8ed 100755 --- a/lib/python/Components/UsageConfig.py +++ b/lib/python/Components/UsageConfig.py @@ -261,6 +261,7 @@ def alternativeNumberModeChange(configElement): # ######## Workaround for VTI Skins ############## config.usage.picon_dir = ConfigDirectory(default="/usr/share/enigma2/picon") + config.usage.servicelist_picon_dir = ConfigDirectory(default="/usr/share/enigma2/picon") config.usage.movielist_show_picon = ConfigYesNo(default=False) config.usage.use_extended_pig = ConfigYesNo(default=False) config.usage.use_extended_pig_channelselection = ConfigYesNo(default=False) diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 4b112b7abd2..bb538bdd27a 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -932,6 +932,9 @@ class ConfigNothing(ConfigSelection): def __init__(self): ConfigSelection.__init__(self, choices=[("", "")]) +class ConfigDescription(ConfigSelection): + def __init__(self): + ConfigSelection.__init__(self, choices=[('', '')]) class ConfigSatellite(ConfigSelection): def __init__(self, choices, default=None):