Skip to content

Commit

Permalink
Bump number of decimal places for offset tool spinbox, otherwise
Browse files Browse the repository at this point in the history
offset tool only allows coarse adjustments in certain CRSs.
  • Loading branch information
nyalldawson committed Jun 9, 2015
1 parent 31232d1 commit 73ae0f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsmaptooloffsetcurve.cpp
Expand Up @@ -334,7 +334,7 @@ void QgsMapToolOffsetCurve::createDistanceWidget()
mDistanceWidget = new QgsDoubleSpinBox();
mDistanceWidget->setMinimum( -99999999 );
mDistanceWidget->setMaximum( 99999999 );
mDistanceWidget->setDecimals( 2 );
mDistanceWidget->setDecimals( 6 );
mDistanceWidget->setPrefix( tr( "Offset: " ) );
QgisApp::instance()->addUserInputWidget( mDistanceWidget );

Expand Down

0 comments on commit 73ae0f7

Please sign in to comment.