diff options
author | Jonathan Marshall <jmarshall@never.you.mind> | 2011-03-16 16:59:13 +1300 |
---|---|---|
committer | Jonathan Marshall <jmarshall@never.you.mind> | 2011-03-17 08:44:32 +1300 |
commit | ce9e2ac15a78dc87a49aa17c6d251b3524d2cac2 (patch) | |
tree | b1c3bc77f7a9980688b3ac620335cdca1d8d7ec9 /addons | |
parent | 6a40cd5c44d51cee4b1db4dbfd6d7364af8e3871 (diff) |
don't show the tvshow 'breadcrumbs' if they're empty, fixes #11333
Diffstat (limited to 'addons')
-rw-r--r-- | addons/skin.confluence/720p/MyVideoNav.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/addons/skin.confluence/720p/MyVideoNav.xml b/addons/skin.confluence/720p/MyVideoNav.xml index b4f964526d..64009a803a 100644 --- a/addons/skin.confluence/720p/MyVideoNav.xml +++ b/addons/skin.confluence/720p/MyVideoNav.xml @@ -385,7 +385,7 @@ <control type="group"> <posx>470</posx> <posy>0</posy> - <visible>Container.Content(Episodes)</visible> + <visible>Container.Content(Episodes) + !IsEmpty(ListItem.Season)</visible> <include>VisibleFadeEffect</include> <animation effect="slide" end="-710,0" time="400" tween="quadratic" easing="out">WindowClose</animation> <animation effect="slide" start="-710,0" time="400" tween="quadratic" easing="out">WindowOpen</animation> @@ -406,6 +406,7 @@ <posx>240</posx> <posy>0</posy> <visible>Container.Content(Seasons) | Container.Content(Episodes)</visible> + <visible>!IsEmpty(ListItem.TVShowTitle)</visible> <include>VisibleFadeEffect</include> <animation effect="slide" end="-600,0" time="400" tween="quadratic" easing="out">WindowClose</animation> <animation effect="slide" start="-600,0" time="400" tween="quadratic" easing="out">WindowOpen</animation> |