diff options
author | ronie <ronie@kodi.tv> | 2020-10-11 22:40:44 +0200 |
---|---|---|
committer | howie-f <rftc@gmx.de> | 2020-10-12 19:13:25 +0200 |
commit | 72ae2802f425f257c6e3f5f623894e6eaec0dc45 (patch) | |
tree | 9b27d1677a346532ad03096aca4a14ea914b8867 /addons | |
parent | da4905f8c287cb8a7d66e8855a7f16889db0cf80 (diff) |
[addons] correct displayed number of available updates in gui
Diffstat (limited to 'addons')
-rw-r--r-- | addons/skin.estuary/xml/Variables.xml | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/addons/skin.estuary/xml/Variables.xml b/addons/skin.estuary/xml/Variables.xml index 264785009e..49f4c9e916 100644 --- a/addons/skin.estuary/xml/Variables.xml +++ b/addons/skin.estuary/xml/Variables.xml @@ -13,17 +13,8 @@ <value></value> </variable> <variable name="AddonCountLabel"> - <value condition="Integer.IsGreater(Container(8000).NumItems,10)">>9</value> - <value condition="Integer.IsGreater(Container(8000).NumItems,9)">9</value> - <value condition="Integer.IsGreater(Container(8000).NumItems,8)">8</value> - <value condition="Integer.IsGreater(Container(8000).NumItems,7)">7</value> - <value condition="Integer.IsGreater(Container(8000).NumItems,6)">6</value> - <value condition="Integer.IsGreater(Container(8000).NumItems,5)">5</value> - <value condition="Integer.IsGreater(Container(8000).NumItems,4)">4</value> - <value condition="Integer.IsGreater(Container(8000).NumItems,3)">3</value> - <value condition="Integer.IsGreater(Container(8000).NumItems,2)">2</value> - <value condition="Integer.IsGreater(Container(8000).NumItems,0)">1</value> - <value>[COLOR grey]0[/COLOR]</value> + <value condition="Integer.IsGreater(System.AddonUpdateCount,0)">$INFO[System.AddonUpdateCount]</value> + <value>$INFO[System.AddonUpdateCount,[COLOR grey],[/COLOR]]</value> </variable> <variable name="MusicInfoTextboxVar"> <value condition="String.IsEqual(ListItem.DbType,song)">$INFO[ListItem.Comment,[B]$LOCALIZE[569][/B][CR][COLOR=white],[/COLOR]]</value> |