Skip to content

Commit 332c8a5

Browse files
committed
[processing] Fixes #18187: SAGA output extent values are not in the right order
1 parent f97d9dc commit 332c8a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/saga/SagaAlgorithm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,8 @@ def processAlgorithm(self, parameters, context, feedback):
277277

278278
values = []
279279
values.append(rect.xMinimum())
280-
values.append(rect.yMinimum())
281280
values.append(rect.xMaximum())
281+
values.append(rect.yMinimum())
282282
values.append(rect.yMaximum())
283283

284284
for i in range(4):

0 commit comments

Comments
 (0)