diff options
author | jjd-uk <jjd-uk@kodi.tv> | 2024-07-29 13:37:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-29 13:37:53 +0100 |
commit | 8adee68acddd62d915a3ab7b0279a71c8ddb6da0 (patch) | |
tree | 9acfd76c17cdce54bda1303d4cb599232edf99ce | |
parent | 830cb39395e572d96a61db5c13510da45f256cd3 (diff) | |
parent | dd42a6a0f42b12603e2415feb7c642c5577facc8 (diff) |
Merge pull request #25554 from jjd-uk/estuary_fix_watchedicon_omega
[Backport][Estuary] Fix watched icons for episodes & sets
-rw-r--r-- | addons/skin.estuary/xml/Variables.xml | 1 | ||||
-rw-r--r-- | addons/skin.estuary/xml/View_54_InfoWall.xml | 9 |
2 files changed, 6 insertions, 4 deletions
diff --git a/addons/skin.estuary/xml/Variables.xml b/addons/skin.estuary/xml/Variables.xml index eaca6cd065..1dd169932a 100644 --- a/addons/skin.estuary/xml/Variables.xml +++ b/addons/skin.estuary/xml/Variables.xml @@ -475,6 +475,7 @@ <value condition="!ListItem.IsParentFolder">OverlayUnwatched.png</value> </variable> <variable name="ItemStatusIconVar"> + <value condition="[String.IsEqual(Listitem.DBType,tvshow) | String.IsEqual(Listitem.DBType,season)] + String.IsEqual(ListItem.Property(WatchedEpisodes),ListItem.Property(TotalEpisodes)) | String.IsEqual(ListItem.DBtype,set) + String.IsEqual(ListItem.Property(Watched),ListItem.Property(Total))">OverlayWatched.png</value> <value condition="String.IsEqual(ListItem.DBtype,tvshow) | String.IsEqual(ListItem.DBtype,set) | String.IsEqual(ListItem.DBType,season)">lists/played-total.png</value> <value condition="ListItem.IsRecording">windows/pvr/record.png</value> <value condition="ListItem.HasReminder">icons/pvr/timers/bell.png</value> diff --git a/addons/skin.estuary/xml/View_54_InfoWall.xml b/addons/skin.estuary/xml/View_54_InfoWall.xml index d0d3e23af6..a2660a307c 100644 --- a/addons/skin.estuary/xml/View_54_InfoWall.xml +++ b/addons/skin.estuary/xml/View_54_InfoWall.xml @@ -163,19 +163,20 @@ <visible>!ListItem.IsParentFolder</visible> </control> <control type="label"> - <left>31</left> + <left>30</left> <top>178</top> - <width>260</width> + <width>220</width> <label>$PARAM[thumb_label]</label> <font>font20_title</font> <shadowcolor>text_shadow</shadowcolor> - <align>right</align> + <align>left</align> </control> <control type="image"> - <left>20</left> + <left>260</left> <top>175</top> <width>32</width> <height>32</height> + <align>right</align> <texture>$VAR[ItemStatusIconVar]</texture> </control> <control type="textbox"> |