fixed minor issue refreshing extent

git-svn-id: http://svn.osgeo.org/qgis/trunk@14977 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
brushtyler 2010-12-27 17:12:10 +00:00
parent 1650e86b10
commit d688368031

View File

@ -82,7 +82,6 @@ class GdalToolsExtentSelector(QWidget, Ui_ExtentSelector):
def fillCoords(self):
rect = self.getExtent()
self.blockSignals(True)
if rect != None:
self.x1CoordEdit.setText( str(rect.xMinimum()) )
@ -95,8 +94,7 @@ class GdalToolsExtentSelector(QWidget, Ui_ExtentSelector):
self.y1CoordEdit.clear()
self.y2CoordEdit.clear()
self.blockSignals(False)
self.coordsChanged()
self.emit( SIGNAL( "newExtentDefined()" ) )
class RectangleMapTool(QgsMapToolEmitPoint):
def __init__(self, canvas):