remove a printf used for debug.

This commit is contained in:
jean-pierre charras 2019-06-13 14:07:34 +02:00
parent a41ff7b924
commit 19de0ae55d
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ const EDA_RECT WS_DRAW_ITEM_POLYPOLYGONS::GetBoundingBox() const
rect.SetY( box.GetY() );
rect.SetWidth( box.GetWidth() );
rect.SetHeight( box.GetHeight() );
printf("bbox %f %f %f %f\n",box.GetX()/1e3,box.GetY()/1e3,box.GetWidth()/1e3,box.GetHeight()/1e3);fflush(0);
return rect;
}