diff options
author | Miguel Borges de Freitas <92enen@gmail.com> | 2023-06-16 13:41:20 +0100 |
---|---|---|
committer | Miguel Borges de Freitas <92enen@gmail.com> | 2023-06-16 13:48:10 +0100 |
commit | c9d0082317c5ea7f1183b2317b475d99c6777cf5 (patch) | |
tree | 9ee8a04c5d5b69c80c92164594fbeb02ca388d21 | |
parent | afc312071493b52542755f3d0a6ea2cc90f3f8e3 (diff) |
[Estuary] Rename timer to 1109_topbaroverlay (dialog id)
-rw-r--r-- | addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml | 4 | ||||
-rw-r--r-- | addons/skin.estuary/xml/Timers.xml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml b/addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml index 3f046338ee..9a5aed2d46 100644 --- a/addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml +++ b/addons/skin.estuary/xml/Custom_1109_TopBarOverlay.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <window type="dialog" id="1109"> - <onload>Skin.TimerStart(1110_topbaroverlay)</onload> + <onload>Skin.TimerStart(1109_topbaroverlay)</onload> <visible>Window.IsActive(fullscreenvideo) | Window.IsActive(visualisation)</visible> <visible>Window.IsActive(seekbar) | Window.IsActive(pvrosdchannels) | Window.IsActive(pvrchannelguide)</visible> <depth>DepthOSD</depth> @@ -10,7 +10,7 @@ <control type="group"> <visible>![Player.ShowInfo | Window.IsActive(fullscreeninfo) | Player.ShowTime | Window.IsActive(videoosd) | Window.IsActive(musicosd) | Window.IsActive(playerprocessinfo) | Window.IsActive(pvrosdchannels) | Window.IsActive(pvrchannelguide)] + [!String.IsEmpty(Player.SeekNumeric) | Player.Seeking | Player.HasPerformedSeek(3) | Player.Forwarding | Player.Rewinding | Player.Paused] | !String.IsEmpty(PVR.ChannelNumberInput)</visible> <animation effect="fade" start="0" end="100" time="300">VisibleChange</animation> - <animation effect="slide" start="0,0" end="0,-80" time="300" condition="Player.Paused + Integer.IsGreaterOrEqual(Skin.TimerElapsedSecs(1110_topbaroverlay),5)">Conditional</animation> + <animation effect="slide" start="0,0" end="0,-80" time="300" condition="Player.Paused + Integer.IsGreaterOrEqual(Skin.TimerElapsedSecs(1109_topbaroverlay),5)">Conditional</animation> <control type="image"> <left>0</left> <top>0</top> diff --git a/addons/skin.estuary/xml/Timers.xml b/addons/skin.estuary/xml/Timers.xml index 00633bf104..27b9e16e58 100644 --- a/addons/skin.estuary/xml/Timers.xml +++ b/addons/skin.estuary/xml/Timers.xml @@ -9,10 +9,10 @@ <onstop>Dialog.Close(videoosd)</onstop> </timer> <timer> - <name>1110_topbaroverlay</name> + <name>1109_topbaroverlay</name> <description>A timer that is activated when the topbaroverlay is loaded and stops automatically after 5 seconds (or playback is resumed)</description> <start reset="true">Window.IsActive(1109) + [Player.Seeking | Player.Forwarding | Player.Rewinding | Player.HasPerformedSeek(1)]</start> <reset>Player.Seeking | Player.Forwarding | Player.Rewinding | Player.HasPerformedSeek(1)</reset> - <stop>Integer.IsGreaterOrEqual(Skin.TimerElapsedSecs(1110_topbaroverlay),5) | Player.Playing</stop> + <stop>Integer.IsGreaterOrEqual(Skin.TimerElapsedSecs(1109_topbaroverlay),5) | Player.Playing</stop> </timer> </timers> |