Remove a trace used for debug.

This commit is contained in:
jean-pierre charras 2019-06-13 13:35:28 +02:00
parent f135ec47fa
commit b9eb627bc3
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,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;
}