Skip to content

Commit 7ecb053

Browse files
committedJan 15, 2018
[processing] correctly retrieve icon for script collection (fix #17780)
1 parent f92991e commit 7ecb053

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/core/Processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def addScripts(folder):
109109
print(scripts)
110110
for script in scripts:
111111
script.allowEdit = False
112-
script._icon = provider._icon
112+
script._icon = provider.icon()
113113
provider.externalAlgs.extend(scripts)
114114
provider.refreshAlgorithms()
115115

0 commit comments

Comments
 (0)
Please sign in to comment.