--- misc/xbmc/plugin.video.todic/default.py 2019/03/10 21:37:47 3259 +++ misc/xbmc/plugin.video.todic/default.py 2019/03/12 20:23:54 3260 @@ -3,7 +3,7 @@ ''' Todic plugin for XBMC - Version 1.8.1 + Version 1.8.2 ''' import sys @@ -285,13 +285,14 @@ label=name, label2='test', iconImage='DefaultFolder.png') listitem.setProperty('Fanart_Image', fanartImage) listitem.addContextMenuItems([('Refresh', 'Container.Refresh')]) + listitem.setArt( {'thumb': thumb} ) if mode == '50': 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 +# 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) name = name.encode('UTF-8')