diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2021-10-11 22:37:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 22:37:05 +0200 |
commit | 491b84b96bf4aa0a7f8e04c8b795d77b310ae41c (patch) | |
tree | 29da4abd726bf2271b045a506ecfa22a513d8c46 /addons/skin.estuary | |
parent | 2eb521f17b649c3aaddb73aa14e9202f99138ea2 (diff) | |
parent | 6ebe3842f036ab94f62df803696995eb1243ff34 (diff) |
Merge pull request #20301 from ksooo/estuary-pvr-home-recordings-progress
[Estuary] Add 'percentage played' progress bar to 'Recent recordings'…
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 ffebab85cd..36b83c2210 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> |