diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2018-11-05 11:23:35 +0100 |
---|---|---|
committer | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2018-11-05 11:23:35 +0100 |
commit | c90b4a62466e6a7858a3885e432b0ab54915ee48 (patch) | |
tree | 89f6c50a51f1fa6f479c2cdefc339b3a5a75bb34 /addons | |
parent | adaa8b3bff11a932b4d8c4518a4310997199db03 (diff) |
[Estuary] Fix OSD sublabel var: Only display playlist info when a track from the current playlist is playing.
Diffstat (limited to 'addons')
-rw-r--r-- | addons/skin.estuary/xml/Variables.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addons/skin.estuary/xml/Variables.xml b/addons/skin.estuary/xml/Variables.xml index f3e7f46b62..3096dc8528 100644 --- a/addons/skin.estuary/xml/Variables.xml +++ b/addons/skin.estuary/xml/Variables.xml @@ -275,7 +275,7 @@ <value>$LOCALIZE[31000]...</value> </variable> <variable name="OSDSubLabelVar"> - <value condition="Window.IsActive(visualisation) + Integer.IsGreater(Playlist.Length,1)">$LOCALIZE[554] $INFO[Playlist.Position] / $INFO[Playlist.Length]</value> + <value condition="Window.IsActive(visualisation) + Integer.IsGreater(Playlist.Length,1) + Integer.IsGreater(Playlist.Position,0)">$LOCALIZE[554] $INFO[Playlist.Position] / $INFO[Playlist.Length]</value> <value condition="VideoPlayer.Content(musicvideos)">$INFO[VideoPlayer.Artist]$INFO[VideoPlayer.Album, - ]</value> <value condition="VideoPlayer.Content(episodes)">$INFO[VideoPlayer.Season,[COLOR button_focus]S,[/COLOR]]$INFO[VideoPlayer.Episode,[COLOR button_focus]E,: [/COLOR]]$INFO[VideoPlayer.TVShowTitle]</value> <value condition="VideoPlayer.Content(LiveTV) | PVR.IsPlayingRecording | PVR.IsPlayingEpgTag">$INFO[VideoPlayer.ChannelNumberLabel,([COLOR button_focus],[/COLOR]) ]$INFO[VideoPlayer.ChannelName] $INFO[VideoPlayer.EpisodeName, - ]</value> |