Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] fixed wrong path to grass icon in grass7 provider
  • Loading branch information
volaya committed Apr 19, 2014
1 parent f014b4f commit ab4e78b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/grass7/Grass7Algorithm.py
Expand Up @@ -89,7 +89,7 @@ def getCopy(self):
return newone

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

def helpFile(self):
return 'http://grass.osgeo.org/grass70/manuals/' + self.grassName \
Expand Down
Expand Up @@ -97,7 +97,7 @@ def getName(self):
return 'grass70'

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

def getSupportedOutputVectorLayerExtensions(self):
return ['shp']
Expand Down

0 comments on commit ab4e78b

Please sign in to comment.