Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] fix axis orientation in the Vector Scatterplot alg (fix #…
  • Loading branch information
alexbruy committed May 20, 2015
1 parent 499c102 commit 8ad1883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/VectorLayerScatterplot.py
Expand Up @@ -62,8 +62,8 @@ def defineCharacteristics(self):
def processAlgorithm(self, progress):
layer = dataobjects.getObjectFromUri(
self.getParameterValue(self.INPUT))
xfieldname = self.getParameterValue(self.YFIELD)
yfieldname = self.getParameterValue(self.XFIELD)
xfieldname = self.getParameterValue(self.XFIELD)
yfieldname = self.getParameterValue(self.YFIELD)

output = self.getOutputValue(self.OUTPUT)

Expand Down

0 comments on commit 8ad1883

Please sign in to comment.