Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed minor issue refreshing extent
git-svn-id: http://svn.osgeo.org/qgis/trunk@14977 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
brushtyler committed Dec 27, 2010
1 parent 1650e86 commit d688368
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/plugins/GdalTools/tools/extentSelector.py
Expand Up @@ -82,7 +82,6 @@ def coordsChanged(self):

def fillCoords(self):
rect = self.getExtent()

self.blockSignals(True)
if rect != None:
self.x1CoordEdit.setText( str(rect.xMinimum()) )
Expand All @@ -95,8 +94,7 @@ def fillCoords(self):
self.y1CoordEdit.clear()
self.y2CoordEdit.clear()
self.blockSignals(False)

self.coordsChanged()
self.emit( SIGNAL( "newExtentDefined()" ) )

class RectangleMapTool(QgsMapToolEmitPoint):
def __init__(self, canvas):
Expand Down

0 comments on commit d688368

Please sign in to comment.