aboutsummaryrefslogtreecommitdiff
path: root/addons/skin.estuary
diff options
context:
space:
mode:
authorBigNoid <big.noid@kodi.tv>2016-12-13 09:22:09 +0100
committerBigNoid <big.noid@kodi.tv>2016-12-13 09:22:09 +0100
commiteefe8c17784e61ec06fda98d58d0e2c68046f7a6 (patch)
treeea987974455f6d95e7f99d82c38dd783e7158b4e /addons/skin.estuary
parent571be5017ed6cf07fd6cc455c6eb888e3b82ae69 (diff)
[estuary] rm deprecated infobool: isempty->string.isempty
Diffstat (limited to 'addons/skin.estuary')
-rw-r--r--addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml2
-rw-r--r--addons/skin.estuary/xml/DialogSeekBar.xml2
-rw-r--r--addons/skin.estuary/xml/Variables.xml2
3 files changed, 3 insertions, 3 deletions
diff --git a/addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml b/addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml
index 96a49b65bb..87060da239 100644
--- a/addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml
+++ b/addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml
@@ -26,7 +26,7 @@
</control>
<control type="group">
<visible>!Window.IsActive(pvrosdchannels) + !Window.IsActive(pvrosdguide)</visible>
- <visible>IsEmpty(Player.Art(clearlogo))</visible>
+ <visible>String.IsEmpty(Player.Art(clearlogo))</visible>
<animation effect="fade" time="150">VisibleChange</animation>
<left>30</left>
<right>400</right>
diff --git a/addons/skin.estuary/xml/DialogSeekBar.xml b/addons/skin.estuary/xml/DialogSeekBar.xml
index b241009e37..6308c02d22 100644
--- a/addons/skin.estuary/xml/DialogSeekBar.xml
+++ b/addons/skin.estuary/xml/DialogSeekBar.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<window>
- <visible>[[Player.Seeking | Player.DisplayAfterSeek | [Player.Paused + !Player.Caching] | Player.Forwarding | Player.Rewinding | Player.ShowInfo | Window.IsActive(fullscreeninfo) | Window.IsActive(videoosd) | Window.IsActive(playerprocessinfo)] + Window.IsActive(fullscreenvideo)] | Window.IsActive(visualisation) | !IsEmpty(Player.SeekNumeric)</visible>
+ <visible>[[Player.Seeking | Player.DisplayAfterSeek | [Player.Paused + !Player.Caching] | Player.Forwarding | Player.Rewinding | Player.ShowInfo | Window.IsActive(fullscreeninfo) | Window.IsActive(videoosd) | Window.IsActive(playerprocessinfo)] + Window.IsActive(fullscreenvideo)] | Window.IsActive(visualisation) | !String.IsEmpty(Player.SeekNumeric)</visible>
<visible>!Window.IsActive(sliderdialog)</visible>
<include>Animation_BottomSlide</include>
<depth>DepthOSD</depth>
diff --git a/addons/skin.estuary/xml/Variables.xml b/addons/skin.estuary/xml/Variables.xml
index 487ce1584e..5bdf202619 100644
--- a/addons/skin.estuary/xml/Variables.xml
+++ b/addons/skin.estuary/xml/Variables.xml
@@ -187,7 +187,7 @@
<value condition="Player.IsTempo">$LOCALIZE[31142]: $INFO[Player.PlaySpeed]</value>
</variable>
<variable name="SeekTimeLabelVar">
- <value condition="!IsEmpty(Player.SeekNumeric)">[B]$INFO[Player.SeekNumeric(hh:mm:ss)][/B]</value>
+ <value condition="!String.IsEmpty(Player.SeekNumeric)">[B]$INFO[Player.SeekNumeric(hh:mm:ss)][/B]</value>
<value condition="Player.Seeking">$INFO[Player.SeekTime]$INFO[Player.Duration, / ]</value>
<value>$INFO[Player.Time]$INFO[Player.Duration, / ]</value>
</variable>