chrisbevan / skin.pellucid

A skin for Kodi by theDeadMan
Other
46 stars 40 forks source link

Remove star on movie cover #83

Closed FomaFomitch closed 1 year ago

FomaFomitch commented 2 years ago

Hello, can't find how to delete this star (it's on every movie cover of my collection) ? image

DrGogu commented 2 years ago

It may mean the movie is unwatched I think.

ohhmyy commented 2 years ago

Hi. Yes, the star marks the content that has not been watched yet. There is no option to turn it off. But you can easily do it yourself by changing the View_Movies.xml. https://github.com/chrisbevan/skin.pellucid/blob/master/1080i/View_Movies.xml

In lines 288 and 358 you could change the visible condition to make it not visible anymore: So change <visible>String.IsEmpty(ListItem.PlayCount)</visible> to <visible>false</visible>

FomaFomitch commented 2 years ago

Thanks!