Skip to content

Commit

Permalink
fix hasYMax variable
Browse files Browse the repository at this point in the history
  • Loading branch information
aruneko authored and nyalldawson committed Sep 5, 2018
1 parent 30059e6 commit cedfaa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/VoronoiPolygons.py
Expand Up @@ -404,7 +404,7 @@ def clip_line(x1, y1, x2, y2, w, h):
if hasYMin:
bndpoints.append(QgsPointXY(width + extent.xMinimum(),
extent.yMinimum()))
elif HasYMax:
elif hasYMax:
bndpoints.append(QgsPointXY(width + extent.xMinimum(),
height + extent.yMinimum()))
if pt_y == ymin: # lowest point
Expand Down

0 comments on commit cedfaa7

Please sign in to comment.