2018-04-12, 13:13
Hi,
I'm trying to make kodi subtitle addon show multiple subtitles, So I need the user to select multiple subtitles in the subtitle list, unfortunately I couldn't find a way to make the list "multiselect"
currently you can only select one item like so
So basicly when creating the list this way :
Thanks
I'm trying to make kodi subtitle addon show multiple subtitles, So I need the user to select multiple subtitles in the subtitle list, unfortunately I couldn't find a way to make the list "multiselect"
currently you can only select one item like so
So basicly when creating the list this way :
I want to be able to select multiple items in the resulting listpython:
listitem = xbmcgui.ListItem(label = item_data["LanguageName"],label2= item_data["SubFileName"],)
xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=url,listitem=listitem,isFolder=False)
Thanks