Skip to content

Commit

Permalink
[processing] fixed wrong signal connection
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 10, 2013
1 parent e32930d commit 9de0a31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ExtentSelectionPanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(self, dialog, alg, default):
canvas = interface.iface.mapCanvas()
self.prevMapTool = canvas.mapTool()
self.tool = RectangleMapTool(canvas)
self.tool.rectangleCreated.connect(self.fillCoords)
self.connect(self.tool, SIGNAL('rectangleCreated()'), self.fillCoords)

def canUseAutoExtent(self):
for param in self.params:
Expand Down

0 comments on commit 9de0a31

Please sign in to comment.