Showing with 1 addition and 2 deletions.
  1. +1 −2 src/app/qgsmeasuretool.cpp
3 changes: 1 addition & 2 deletions src/app/qgsmeasuretool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ void QgsMeasureTool::deactivate()
void QgsMeasureTool::restart()
{
mPoints.clear();
// Append point we will move
// mPoints.append( QgsPoint( 0, 0 ) );

mRubberBand->reset( mMeasureArea );

Expand Down Expand Up @@ -179,6 +177,7 @@ void QgsMeasureTool::canvasReleaseEvent( QMouseEvent * e )
}
else if ( e->button() == Qt::LeftButton )
{
// Append point we will move
addPoint( point );
mDialog->show();
}
Expand Down