Migliorie a:

- Config Channel
 - Dialog Select
 - Tutte i settaggi che fanno uso di Dialog Select
This commit is contained in:
Alhaziel01
2020-05-13 17:05:12 +02:00
parent 886940f46d
commit 71ce97432e
5 changed files with 166 additions and 304 deletions

View File

@@ -74,8 +74,8 @@ def dialog_yesno(heading, line1, line2="", line3="", nolabel="No", yeslabel="Si"
return dialog.yesno(heading, makeMessage(line1, line2, line3), nolabel=nolabel, yeslabel=yeslabel)
def dialog_select(heading, _list):
return xbmcgui.Dialog().select(heading, _list)
def dialog_select(heading, _list, preselect=0):
return xbmcgui.Dialog().select(heading, _list, preselect=preselect)
def dialog_multiselect(heading, _list, autoclose=0, preselect=[], useDetails=False):