diff options
-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> |