Skip to content

Commit ab4e78b

Browse files
committedApr 19, 2014
[processing] fixed wrong path to grass icon in grass7 provider
1 parent f014b4f commit ab4e78b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎python/plugins/processing/algs/grass7/Grass7Algorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def getCopy(self):
8989
return newone
9090

9191
def getIcon(self):
92-
return QIcon(os.path.dirname(__file__) + '/../images/grass.png')
92+
return QIcon(os.path.dirname(__file__) + '/../../images/grass.png')
9393

9494
def helpFile(self):
9595
return 'http://grass.osgeo.org/grass70/manuals/' + self.grassName \

‎python/plugins/processing/algs/grass7/Grass7AlgorithmProvider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def getName(self):
9797
return 'grass70'
9898

9999
def getIcon(self):
100-
return QIcon(os.path.dirname(__file__) + '/../images/grass.png')
100+
return QIcon(os.path.dirname(__file__) + '/../../images/grass.png')
101101

102102
def getSupportedOutputVectorLayerExtensions(self):
103103
return ['shp']

0 commit comments

Comments
 (0)
Please sign in to comment.