Skip to content

Commit d688368

Browse files
author
brushtyler
committedDec 27, 2010
fixed minor issue refreshing extent
git-svn-id: http://svn.osgeo.org/qgis/trunk@14977 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 1650e86 commit d688368

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎python/plugins/GdalTools/tools/extentSelector.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ def coordsChanged(self):
8282

8383
def fillCoords(self):
8484
rect = self.getExtent()
85-
8685
self.blockSignals(True)
8786
if rect != None:
8887
self.x1CoordEdit.setText( str(rect.xMinimum()) )
@@ -95,8 +94,7 @@ def fillCoords(self):
9594
self.y1CoordEdit.clear()
9695
self.y2CoordEdit.clear()
9796
self.blockSignals(False)
98-
99-
self.coordsChanged()
97+
self.emit( SIGNAL( "newExtentDefined()" ) )
10098

10199
class RectangleMapTool(QgsMapToolEmitPoint):
102100
def __init__(self, canvas):

0 commit comments

Comments
 (0)
Please sign in to comment.