Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] fixes for SAGA folder configuration
This tries to address some problem with previously set SAGA paths, by always showing the SAGA path config value, and by trying to ruin a built in copy of SAGA if the current SAGA folder is wrong (as it usually happens when updating QGIS)
  • Loading branch information
volaya committed Dec 12, 2016
1 parent 7028eee commit f852603
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/saga/SagaAlgorithmProvider.py
Expand Up @@ -58,7 +58,7 @@ def __init__(self):
self.activate = True

def initializeSettings(self):
if (isWindows() or isMac()) and SagaUtils.findSagaFolder() is None:
if (isWindows() or isMac()):
ProcessingConfig.addSetting(Setting("SAGA",
SagaUtils.SAGA_FOLDER, self.tr('SAGA folder'),
'',
Expand All @@ -78,7 +78,7 @@ def initializeSettings(self):

def unload(self):
AlgorithmProvider.unload(self)
if (isWindows() or isMac()) and SagaUtils.findSagaFolder() is None:
if (isWindows() or isMac()):
ProcessingConfig.removeSetting(SagaUtils.SAGA_FOLDER)

ProcessingConfig.removeSetting(SagaUtils.SAGA_LOG_CONSOLE)
Expand Down
7 changes: 5 additions & 2 deletions python/plugins/processing/algs/saga/SagaUtils.py
Expand Up @@ -72,10 +72,13 @@ def findSagaFolder():

def sagaPath():
folder = ProcessingConfig.getSetting(SAGA_FOLDER)
if not os.path.isdir(folder):
folder = None
ProcessingLog.addToLog(ProcessingLog.LOG_WARNING,
'Specified SAGA folder does not exist. Will try to find built-in binaries.')
if folder is None or folder == '':
folder = findSagaFolder()
if folder is not None:
ProcessingConfig.setSettingValue(SAGA_FOLDER, folder)

return folder or ''


Expand Down

0 comments on commit f852603

Please sign in to comment.