Skip to content

Commit a15d032

Browse files
authoredJul 7, 2016
Merge pull request #3279 from ahuarte47/Issue_MeasureDialog_2
[Bugfix] Fix MeasureTool when DestinationCRS changes (2)
2 parents 326786b + 2ac9ad5 commit a15d032

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎src/app/qgsmeasuretool.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,11 @@ void QgsMeasureTool::updateSettings()
168168
mRubberBand->addPoint( mPoints.last() );
169169
mDialog->addPoint( mPoints.last() );
170170
}
171+
if ( mRubberBand->size() > 0 )
172+
{
173+
mRubberBand->setVisible( true );
174+
mRubberBandPoints->setVisible( true );
175+
}
171176
}
172177

173178
//////////////////////////

0 commit comments

Comments
 (0)
Please sign in to comment.