diff options
author | ronie <ronie@users.noreply.github.com> | 2016-10-25 21:04:57 +0200 |
---|---|---|
committer | ronie <ronie@users.noreply.github.com> | 2016-10-25 21:05:22 +0200 |
commit | 8d5a07907b0ec7814fb53cc3ad2fd17fc1f4abd8 (patch) | |
tree | e562716366388b9669f3d4f476b26b56c5335e1c /addons/skin.estuary | |
parent | ec6d567737035ab431418b0db68d5d3b3b882784 (diff) |
[estuary] fallback to icon in poster view
Diffstat (limited to 'addons/skin.estuary')
-rw-r--r-- | addons/skin.estuary/1080i/Variables.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/addons/skin.estuary/1080i/Variables.xml b/addons/skin.estuary/1080i/Variables.xml index 04f788e32b..2e98bf1a48 100644 --- a/addons/skin.estuary/1080i/Variables.xml +++ b/addons/skin.estuary/1080i/Variables.xml @@ -166,7 +166,8 @@ <value condition="!String.IsEmpty(Container.Art(tvshow.poster)) + Container.Content(seasons) + Window.IsActive(movieinformation)">$INFO[Container.Art(tvshow.poster)]</value> <value condition="Container.Content(actors) | Container.Content(directors)">$INFO[Container.ListItem.Art(thumb)]</value> <value condition="!String.IsEmpty(ListItem.Art(tvshow.poster)) + !Container.Content(seasons)">$INFO[ListItem.Art(tvshow.poster)]</value> - <value>$INFO[ListItem.Art(poster)]</value> + <value condition="!String.IsEmpty(Listitem.Art(poster))">$INFO[Listitem.Art(poster)]</value> + <value>$INFO[ListItem.Icon]</value> </variable> <variable name="InfoDialogPosterVar"> <value condition="!String.IsEmpty(ListItem.Art(poster))">$INFO[ListItem.Art(poster)]</value> @@ -175,7 +176,8 @@ </variable> <variable name="ListPosterVar"> <value condition="ListItem.IsParentFolder">DefaultFolderBackSquare.png</value> - <value>$INFO[ListItem.Art(poster)]</value> + <value condition="!String.IsEmpty(Listitem.Art(poster))">$INFO[Listitem.Art(poster)]</value> + <value>$INFO[ListItem.Icon]</value> </variable> <variable name="BannerLabel2Var"> <value condition="String.IsEqual(Listitem.DBType,tvshow)">$INFO[ListItem.Property(WatchedEpisodes)]$INFO[ListItem.Property(TotalEpisodes), / ,]</value> |