use setArt(), setting icon in constructor is deprecated

This commit is contained in:
Rob Weber 2019-11-26 11:31:40 -06:00
parent 6c99667afa
commit dd5b99c978
2 changed files with 9 additions and 3 deletions

View File

@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- added flake8 testing to travis-ci - added flake8 testing to travis-ci
- updated code to make python3 compatible - updated code to make python3 compatible
- updated code for pep9 styling - updated code for pep9 styling
- use setArt() to set ListItem icons as the icon= constructor is deprecated
### Removed ### Removed

View File

@ -119,7 +119,7 @@ class AdvancedBackupEditor:
def editSet(self, name, backupSet): def editSet(self, name, backupSet):
optionSelected = '' optionSelected = ''
rootPath = backupSet['root'] rootPath = backupSet['root']
utils.log(rootPath)
while(optionSelected != -1): while(optionSelected != -1):
options = [xbmcgui.ListItem(utils.getString(30120), "Exclude a specific folder from this backup set"), xbmcgui.ListItem(utils.getString(30135), "Include a specific folder to this backup set"), xbmcgui.ListItem(rootPath, utils.getString(30121))] options = [xbmcgui.ListItem(utils.getString(30120), "Exclude a specific folder from this backup set"), xbmcgui.ListItem(utils.getString(30135), "Include a specific folder to this backup set"), xbmcgui.ListItem(rootPath, utils.getString(30121))]
@ -179,11 +179,16 @@ class AdvancedBackupEditor:
while(exitCondition != -1): while(exitCondition != -1):
# load the custom paths # load the custom paths
options = [xbmcgui.ListItem(utils.getString(30126), '', utils.addon_dir() + '/resources/images/plus-icon.png')] listItem = xbmcgui.ListItem(utils.getString(30126), '')
listItem.setArt({'icon': utils.addon_dir() + 'resources/images/plus-icon.png'})
options = [listItem]
for index in range(0, len(customPaths.getSets())): for index in range(0, len(customPaths.getSets())):
aSet = customPaths.getSet(index) aSet = customPaths.getSet(index)
options.append(xbmcgui.ListItem(aSet['name'], utils.getString(30121) + ': ' + aSet['set']['root'], utils.addon_dir() + '/resources/images/folder-icon.png'))
listItem = xbmcgui.ListItem(aSet['name'], utils.getString(30121) + ': ' + aSet['set']['root'])
listItem.setArt({'icon': utils.addon_dir() + 'resources/images/folder-icon.png'})
options.append(listItem)
# show the gui # show the gui
exitCondition = self.dialog.select(utils.getString(30125), options, useDetails=True) exitCondition = self.dialog.select(utils.getString(30125), options, useDetails=True)