mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-14 20:35:48 +01:00
use setArt(), setting icon in constructor is deprecated
This commit is contained in:
parent
6c99667afa
commit
dd5b99c978
@ -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
|
||||||
|
|
||||||
|
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user