Skip to content

Commit

Permalink
add vti workaroud
Browse files Browse the repository at this point in the history
  • Loading branch information
atvcaptain committed Jun 23, 2023
1 parent c9077b6 commit 6f516ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/python/Components/UsageConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 3 additions & 0 deletions lib/python/Components/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -932,6 +932,9 @@ class ConfigNothing(ConfigSelection):
def __init__(self):
ConfigSelection.__init__(self, choices=[("", "")])

class ConfigDescription(ConfigSelection):
def __init__(self):
ConfigSelection.__init__(self, choices=[('', '<DUMMYENTRY>')])

class ConfigSatellite(ConfigSelection):
def __init__(self, choices, default=None):
Expand Down

0 comments on commit 6f516ea

Please sign in to comment.