diff options
author | jjd-uk <jjd-uk@kodi.tv> | 2024-01-24 17:57:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 17:57:10 +0000 |
commit | a4b164c00cbb20d2de48327a0189edb2e0ba3efc (patch) | |
tree | b0dc11434acc8dd3df16e8c71f822309b2e668cd /addons/skin.estuary/xml/Variables.xml | |
parent | 09966e73a7ef7c0216d88db05d9ecf064b5c1872 (diff) | |
parent | 734d9422c119b9d72213d0d82f402eb73325da02 (diff) |
Merge pull request #24521 from jjd-uk/estuary_overlay_icons
[Estuary] Refactor of poster/widget overlay icons
Diffstat (limited to 'addons/skin.estuary/xml/Variables.xml')
-rw-r--r-- | addons/skin.estuary/xml/Variables.xml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/addons/skin.estuary/xml/Variables.xml b/addons/skin.estuary/xml/Variables.xml index 4b4f6a0f8f..c35195e270 100644 --- a/addons/skin.estuary/xml/Variables.xml +++ b/addons/skin.estuary/xml/Variables.xml @@ -473,18 +473,21 @@ <value condition="!String.IsEmpty(ListItem.Overlay)">$INFO[ListItem.Overlay]</value> <value condition="!ListItem.IsParentFolder">OverlayUnwatched.png</value> </variable> - <variable name="WallWatchedIconVar"> + <variable name="ItemStatusIconVar"> + <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> <value condition="ListItem.HasTimer">icons/pvr/timers/recording.png</value> - <value condition="ListItem.IsCollection">overlays/set.png</value> - <value condition="ListItem.HasVideoVersions">overlays/versions.png</value> <value condition="ListItem.IsPlaying">overlays/watched/OverlayPlaying-List.png</value> <value condition="ListItem.IsResumable">overlays/watched/resume.png</value> - <value condition="ListItem.HasVideoExtras">overlays/extras.png</value> <value condition="ListItem.HasArchive">windows/pvr/archive.png</value> <value condition="Integer.IsGreater(ListItem.Playcount,0)">$INFO[ListItem.Overlay]</value> </variable> + <variable name="ItemTypeIconVar"> + <value condition="ListItem.IsCollection">overlays/set.png</value> + <value condition="ListItem.HasVideoVersions">overlays/versions.png</value> + <value condition="ListItem.HasVideoExtras">overlays/extras.png</value> + </variable> <variable name="ListPVRRecordingsIconVar"> <value condition="ListItem.IsRecording">windows/pvr/record.png</value> <value condition="ListItem.IsResumable">overlays/watched/resume.png</value> |