Non-responsive scrollbar in addon file lists fixed.
Skip track fixed for fullscreen music view
This commit is contained in:
theDeadMan 2018-09-03 20:10:12 +01:00
parent f5634644ac
commit 464fedf763
5 changed files with 29 additions and 15 deletions

View File

@ -27,6 +27,7 @@
</control> </control>
<!--page scrollbar--> <!--page scrollbar-->
<control type="group" id="8000"> <control type="group" id="8000">
<control type="group">
<visible>Control.IsVisible(60)</visible> <visible>Control.IsVisible(60)</visible>
<animation effect="fade" start="100" end="0" time="100" condition="!controlgroup(8000).hasfocus">conditional</animation> <animation effect="fade" start="100" end="0" time="100" condition="!controlgroup(8000).hasfocus">conditional</animation>
<control type="scrollbar" id="60"> <control type="scrollbar" id="60">
@ -37,6 +38,19 @@
<onback>9999</onback> <onback>9999</onback>
</control> </control>
</control> </control>
<control type="group">
<visible>Control.IsVisible(61)</visible>
<animation effect="fade" start="100" end="0" time="100" condition="!controlgroup(8000).hasfocus">conditional</animation>
<control type="scrollbar" id="61">
<posx>54r</posx>
<posy>row-8-begin</posy>
<height>17-row</height>
<onleft>9999</onleft>
<onback>9999</onback>
</control>
</control>
</control>
<!--page header--> <!--page header-->
<control type="group"> <control type="group">
<include>pageHeader</include> <include>pageHeader</include>

View File

@ -29,7 +29,7 @@
<control type="label"> <control type="label">
<posx>0</posx> <posx>0</posx>
<posy>4-row</posy> <posy>4-row</posy>
<width>10-col</width> <width>12-col</width>
<height>1-row</height> <height>1-row</height>
<font>largeTitle</font> <font>largeTitle</font>
<textcolor>textActive</textcolor> <textcolor>textActive</textcolor>

View File

@ -89,7 +89,7 @@
<!--episode synopsis & thumb--> <!--episode synopsis & thumb-->
<control type="group"> <control type="group">
<!--tvhsow library-sourced episode list--> <!--tvhsow library-sourced episode list-->
<control type="list" id="53"> <control type="panel" id="53">
<visible>$EXP[isEpisode]</visible> <visible>$EXP[isEpisode]</visible>
<posx>978</posx> <posx>978</posx>
<posy>row-9-begin</posy> <posy>row-9-begin</posy>

View File

@ -20,10 +20,10 @@
<width>24-col</width> <width>24-col</width>
<height>23-row</height> <height>23-row</height>
<onleft>9000</onleft> <onleft>9000</onleft>
<onright>60</onright> <onright>61</onright>
<ondown>55</ondown> <ondown>55</ondown>
<onup>55</onup> <onup>55</onup>
<pagecontrol>60</pagecontrol> <pagecontrol>61</pagecontrol>
<itemlayout width="24-col" height="2-row"> <itemlayout width="24-col" height="2-row">
<control type="image"> <control type="image">
<posx>0</posx> <posx>0</posx>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<window type="dialog" id="1101"> <window type="dialog" id="1101">
<onload>Dialog.Close(all)</onload> <onload>Dialog.Close(all)</onload>
<visible>Window.IsActive(1103) + !player.hasaudio</visible> <visible>Window.IsActive(1103) + !player.playing + !player.paused</visible>
<controls> <controls>
<!--debugging--> <!--debugging-->
<include>DebugGrid</include> <include>DebugGrid</include>