diff options
author | Jonathan Marshall <jmarshall@xbmc.org> | 2014-02-28 09:42:00 +1300 |
---|---|---|
committer | Jonathan Marshall <jmarshall@xbmc.org> | 2014-05-25 13:51:33 +1200 |
commit | 58f2f96dfe03572b1986624b6367f3ec1842ce80 (patch) | |
tree | 52c75273b37ea9f71a0e22b25330adfa19e42243 /system/settings/settings.xml | |
parent | 4115565ae8c08670deacc7e221c4c73e9396cb1d (diff) |
[addons] switch general.addonupdates to an integer setting. Skins can use a button control for the setting instead of a
toggle.
Diffstat (limited to 'system/settings/settings.xml')
-rw-r--r-- | system/settings/settings.xml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/system/settings/settings.xml b/system/settings/settings.xml index 391bcee967..86cbe1d0d3 100644 --- a/system/settings/settings.xml +++ b/system/settings/settings.xml @@ -2981,9 +2981,16 @@ </category> <category id="general" label="" help="36412"> <group id="1"> - <setting id="general.addonautoupdate" type="boolean" label="0" help="36413"> + <setting id="general.addonupdates" type="integer" label="0" help="36413"> <level>4</level> - <default>true</default> + <default>0</default> + <constraints> + <options> + <option label="12396">0</option> <!-- AUTO_UPDATES_ON --> + <option label="12397">1</option> <!-- AUTO_UPDATES_NOTIFY --> + </options> + </constraints> + <control type="spinner" format="string" /> </setting> <setting id="general.addonnotifications" type="boolean" label="0" help="36414"> <level>4</level> |