diff options
author | ronie <ronie@users.noreply.github.com> | 2019-03-18 11:25:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 11:25:22 +0100 |
commit | cb9057e11b3cacc7bd48d752bf60f021dba20311 (patch) | |
tree | 8140254606660d05ba9a9a6fd333b8a30fb748d6 | |
parent | ceb4ce2ce96f5bee32050c9dae2a7ed531be0ac7 (diff) | |
parent | 3d5fd4be02d534ff04825fa8bb5dd9e35f9edefb (diff) |
Merge pull request #15766 from Maven85/estuary-osdfullscreen
[estuary] fix title for non episodes
-rw-r--r-- | addons/skin.estuary/xml/Variables.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/addons/skin.estuary/xml/Variables.xml b/addons/skin.estuary/xml/Variables.xml index 2da53aab5f..ccefc41add 100644 --- a/addons/skin.estuary/xml/Variables.xml +++ b/addons/skin.estuary/xml/Variables.xml @@ -271,7 +271,8 @@ <variable name="NowPlayingBreadcrumbsVar"> <value condition="VideoPlayer.Content(livetv)">$INFO[VideoPlayer.Title]</value> <value condition="VideoPlayer.Content(episodes) + !String.IsEmpty(Player.Art(tvshow.clearlogo))">$INFO[VideoPlayer.Season,[COLOR button_focus]S,[/COLOR]]$INFO[VideoPlayer.Episode,[COLOR button_focus]E,: [/COLOR]]$INFO[VideoPlayer.Title]</value> - <value condition="Window.IsActive(fullscreenvideo)">$INFO[VideoPlayer.TVShowTitle]$INFO[VideoPlayer.Year, ([COLOR button_focus],[/COLOR])]</value> + <value condition="VideoPlayer.Content(episodes) + Window.IsActive(fullscreenvideo)">$INFO[VideoPlayer.TVShowTitle]$INFO[VideoPlayer.Year, ([COLOR button_focus],[/COLOR])]</value> + <value condition="!VideoPlayer.Content(episodes) + Window.IsActive(fullscreenvideo)">$INFO[VideoPlayer.Title]$INFO[VideoPlayer.Year, ([COLOR button_focus],[/COLOR])]</value> <value condition="MusicPartyMode.Enabled">$LOCALIZE[589]</value> <value>$LOCALIZE[31000]...</value> </variable> |