From ab4e78b98f63af891cfcd9dc7d6e6b32afeb65c6 Mon Sep 17 00:00:00 2001 From: Victor Olaya Date: Sat, 19 Apr 2014 20:36:41 +0200 Subject: [PATCH] [processing] fixed wrong path to grass icon in grass7 provider --- python/plugins/processing/algs/grass7/Grass7Algorithm.py | 2 +- .../plugins/processing/algs/grass7/Grass7AlgorithmProvider.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/plugins/processing/algs/grass7/Grass7Algorithm.py b/python/plugins/processing/algs/grass7/Grass7Algorithm.py index e8a652436cdd..da82d34c5172 100644 --- a/python/plugins/processing/algs/grass7/Grass7Algorithm.py +++ b/python/plugins/processing/algs/grass7/Grass7Algorithm.py @@ -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 \ diff --git a/python/plugins/processing/algs/grass7/Grass7AlgorithmProvider.py b/python/plugins/processing/algs/grass7/Grass7AlgorithmProvider.py index 44f1d8e6ef1f..87dc976584ae 100644 --- a/python/plugins/processing/algs/grass7/Grass7AlgorithmProvider.py +++ b/python/plugins/processing/algs/grass7/Grass7AlgorithmProvider.py @@ -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']