Skip to content

Commit e5c1be7

Browse files
committedMar 7, 2018
[processing] Fixes #18187: SAGA output extent values are not in the right order
cherry-picked from 332c8a5
1 parent 33587d7 commit e5c1be7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@ def processAlgorithm(self, parameters, context, feedback):
284284

285285
values = []
286286
values.append(rect.xMinimum())
287-
values.append(rect.yMinimum())
288287
values.append(rect.xMaximum())
288+
values.append(rect.yMinimum())
289289
values.append(rect.yMaximum())
290290

291291
for i in range(4):

0 commit comments

Comments
 (0)