We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 1650e86 commit d688368Copy full SHA for d688368
python/plugins/GdalTools/tools/extentSelector.py
@@ -82,7 +82,6 @@ def coordsChanged(self):
82
83
def fillCoords(self):
84
rect = self.getExtent()
85
-
86
self.blockSignals(True)
87
if rect != None:
88
self.x1CoordEdit.setText( str(rect.xMinimum()) )
@@ -95,8 +94,7 @@ def fillCoords(self):
95
94
self.y1CoordEdit.clear()
96
self.y2CoordEdit.clear()
97
self.blockSignals(False)
98
99
- self.coordsChanged()
+ self.emit( SIGNAL( "newExtentDefined()" ) )
100
101
class RectangleMapTool(QgsMapToolEmitPoint):
102
def __init__(self, canvas):
0 commit comments