From b9eb627bc3ebfd5f7ae470ad425d0854ea179df5 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Thu, 13 Jun 2019 13:35:28 +0200 Subject: [PATCH] Remove a trace used for debug. --- common/page_layout/ws_draw_item.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/page_layout/ws_draw_item.cpp b/common/page_layout/ws_draw_item.cpp index 71c5925d5a..af97f2902e 100644 --- a/common/page_layout/ws_draw_item.cpp +++ b/common/page_layout/ws_draw_item.cpp @@ -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; }