diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2021-10-08 19:18:31 +0200 |
---|---|---|
committer | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2021-10-11 19:12:56 +0200 |
commit | 6ebe3842f036ab94f62df803696995eb1243ff34 (patch) | |
tree | c4c50b635eadb792f96ada309c69b96c129b5393 /addons/skin.estuary | |
parent | 8f7ef18443a83d515b7be0e993b78fb0c9f88e85 (diff) |
[Estuary] Add 'percentage played' progress bar to 'Recent recordings' PVR home screen widget.
Diffstat (limited to 'addons/skin.estuary')
-rw-r--r-- | addons/skin.estuary/xml/Includes_Home.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/addons/skin.estuary/xml/Includes_Home.xml b/addons/skin.estuary/xml/Includes_Home.xml index c444e70f61..16799dc3b0 100644 --- a/addons/skin.estuary/xml/Includes_Home.xml +++ b/addons/skin.estuary/xml/Includes_Home.xml @@ -510,6 +510,16 @@ <height>32</height> <texture>$VAR[WallWatchedIconVar]</texture> </control> + <control type="progress"> + <left>20</left> + <top>300</top> + <width>280</width> + <height>1</height> + <texturebg></texturebg> + <midtexture colordiffuse="button_focus" border="3">progress/texturebg_alt_white.png</midtexture> + <info>ListItem.PercentPlayed</info> + <visible>!Integer.IsEqual(ListItem.PercentPlayed,0)</visible> + </control> </control> </itemlayout> <focusedlayout width="310" height="500"> @@ -575,6 +585,16 @@ <height>32</height> <texture>$VAR[WallWatchedIconVar]</texture> </control> + <control type="progress"> + <left>20</left> + <top>300</top> + <width>280</width> + <height>1</height> + <texturebg></texturebg> + <midtexture colordiffuse="button_focus" border="3">progress/texturebg_alt_white.png</midtexture> + <info>ListItem.PercentPlayed</info> + <visible>!Integer.IsEqual(ListItem.PercentPlayed,0)</visible> + </control> </control> </focusedlayout> <content sortby="$PARAM[sortby]" sortorder="$PARAM[sortorder]" target="$PARAM[widget_target]" limit="$PARAM[item_limit]">$PARAM[content_path]</content> |