diff options
author | Martijn Kaijser <martijn@xbmc.org> | 2018-11-13 19:32:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-13 19:32:57 +0100 |
commit | fce4d884b87bc7371a046f4bed1ec21fcc8355a2 (patch) | |
tree | 82c20478f97eabe2974e1387bc01e772fe0cc0f3 /system/settings/settings.xml | |
parent | 7d498e9beaa6956741acf3ca9fedfa928e9d44dc (diff) | |
parent | 9702661180547015d22044d5cd15f3f89d269c2d (diff) |
Merge pull request #14489 from DaVukovic/showplots
Separate shown plots for unwatched items
Diffstat (limited to 'system/settings/settings.xml')
-rwxr-xr-x | system/settings/settings.xml | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/system/settings/settings.xml b/system/settings/settings.xml index aa9cfb364b..dd8020789b 100755 --- a/system/settings/settings.xml +++ b/system/settings/settings.xml @@ -968,10 +968,20 @@ <default>true</default> <control type="toggle" /> </setting> - <setting id="videolibrary.showunwatchedplots" type="boolean" label="20369" help="36141"> + <setting id="videolibrary.showunwatchedplots" type="list[integer]" label="20369" help="36141"> <level>0</level> - <default>true</default> - <control type="toggle" /> + <default>0,1</default> <!-- Show plot for both --> + <constraints> + <options> + <option label="20342">0</option> <!-- Show plot for unwatched movies only --> + <option label="20343">1</option> <!-- Show plot for unwatched tv show episodes only --> + </options> + <delimiter>,</delimiter> + </constraints> + <control type="list" format="string"> + <multiselect>true</multiselect> + <hidevalue>false</hidevalue> + </control> </setting> <setting id="videolibrary.groupmoviesets" type="boolean" label="20458" help="36145"> <level>1</level> |