Don't shout at the user.

This commit is contained in:
Jeff Young 2021-02-23 12:45:37 +00:00
parent a3b9e8ddb4
commit b1943bf6b6
1 changed files with 2 additions and 2 deletions

View File

@ -269,13 +269,13 @@ FOOTPRINT* MICROWAVE_TOOL::createPolygonShape()
if( ( ShapeSize.x ) == 0 || ( ShapeSize.y == 0 ) )
{
editFrame.ShowInfoBarError( _( "Shape has a null size!" ) );
editFrame.ShowInfoBarError( _( "Shape has a null size." ) );
return NULL;
}
if( PolyEdges.size() == 0 )
{
editFrame.ShowInfoBarError( _( "Shape has no points!" ) );
editFrame.ShowInfoBarError( _( "Shape has no points." ) );
return NULL;
}