Skip to content

Commit

Permalink
Fix minimum for QgsMapToolRegularPolygonCenterPoint
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti committed Sep 27, 2017
1 parent 6602855 commit ba07676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsmaptoolregularpolygoncenterpoint.cpp
Expand Up @@ -52,7 +52,7 @@ void QgsMapToolRegularPolygonCenterPoint::cadCanvasReleaseEvent( QgsMapMouseEven
createNumberSidesSpinBox();
if ( mNumberSidesSpinBox )
{
mNumberSidesSpinBox->setMinimum( 5 );
mNumberSidesSpinBox->setMinimum( 3 );
}
}
}
Expand Down

0 comments on commit ba07676

Please sign in to comment.