From 412feddf439d47ea241fd99501fa456f9883fe3a Mon Sep 17 00:00:00 2001 From: Magnus Homann Date: Tue, 28 Aug 2012 23:01:09 +0200 Subject: [PATCH] Fix for #5156 --- src/app/qgsmeasuretool.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/qgsmeasuretool.cpp b/src/app/qgsmeasuretool.cpp index 1bfa62cce4e..a7efa122384 100644 --- a/src/app/qgsmeasuretool.cpp +++ b/src/app/qgsmeasuretool.cpp @@ -42,7 +42,7 @@ QgsMeasureTool::QgsMeasureTool( QgsMapCanvas* canvas, bool measureArea ) mDone = false; // Append point we will move - mPoints.append( QgsPoint (0, 0) ); + mPoints.append( QgsPoint( 0, 0 ) ); mDialog = new QgsMeasureDialog( this ); mSnapper.setMapCanvas( canvas ); @@ -91,6 +91,7 @@ void QgsMeasureTool::activate() void QgsMeasureTool::deactivate() { mDialog->close(); + mRubberBand->reset(); QgsMapTool::deactivate(); } @@ -99,7 +100,7 @@ void QgsMeasureTool::restart() { mPoints.clear(); // Append point we will move - mPoints.append( QgsPoint (0, 0) ); + mPoints.append( QgsPoint( 0, 0 ) ); mRubberBand->reset( mMeasureArea ); @@ -144,7 +145,7 @@ void QgsMeasureTool::canvasMoveEvent( QMouseEvent * e ) QgsPoint point = snapPoint( e->pos() ); mRubberBand->movePoint( point ); - if( ! mPoints.isEmpty() ) + if ( ! mPoints.isEmpty() ) { // Update last point mPoints.removeLast();