Skip to content

Commit

Permalink
[processing] Fixes #18187: SAGA output extent values are not in the r…
Browse files Browse the repository at this point in the history
…ight order
  • Loading branch information
slarosa committed Feb 24, 2018
1 parent f97d9dc commit 332c8a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/saga/SagaAlgorithm.py
Expand Up @@ -277,8 +277,8 @@ def processAlgorithm(self, parameters, context, feedback):

values = []
values.append(rect.xMinimum())
values.append(rect.yMinimum())
values.append(rect.xMaximum())
values.append(rect.yMinimum())
values.append(rect.yMaximum())

for i in range(4):
Expand Down

0 comments on commit 332c8a5

Please sign in to comment.