--- misc/xbmc/plugin.video.todic/default.py 2019/02/28 11:12:40 3252 +++ misc/xbmc/plugin.video.todic/default.py 2019/03/04 13:36:03 3255 @@ -278,7 +278,7 @@ # print "url:" + url # print "thumb:" + thumb listitem = xbmcgui.ListItem( - label=name, label2='test', iconImage='DefaultFolder.png', thumbnailImage=thumb) + label=name, label2='test', iconImage='DefaultFolder.png') listitem.setProperty('Fanart_Image', fanartImage) listitem.addContextMenuItems([('Refresh', 'Container.Refresh')]) @@ -286,7 +286,10 @@ infoLabels = {} infoLabels['title'] = name infoLabels['playcount'] = playcount + if playcount > 0: + listitem.setArt( {'thumb': thumb} ) #not pretty - but at least we can show a different icon for unwatched/watched in kodi18 listitem.setInfo('video', infoLabels) + listitem.setProperty('IsPlayable', 'true') name = name.encode('UTF-8')