Skip to content

Commit 00a0399

Browse files
committed
[processing] fix axis orientation in the Vector Scatterplot alg (fix #12705)
1 parent 8797ca3 commit 00a0399

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/plugins/processing/algs/qgis/VectorLayerScatterplot.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def defineCharacteristics(self):
6262
def processAlgorithm(self, progress):
6363
layer = dataobjects.getObjectFromUri(
6464
self.getParameterValue(self.INPUT))
65-
xfieldname = self.getParameterValue(self.YFIELD)
66-
yfieldname = self.getParameterValue(self.XFIELD)
65+
xfieldname = self.getParameterValue(self.XFIELD)
66+
yfieldname = self.getParameterValue(self.YFIELD)
6767

6868
output = self.getOutputValue(self.OUTPUT)
6969

0 commit comments

Comments
 (0)