From 64cf593ee9fcbeb0f39d04ec9df790edf1406e35 Mon Sep 17 00:00:00 2001 From: Tomasz Wlostowski Date: Fri, 12 Feb 2021 00:15:35 +0100 Subject: [PATCH] router: debug points now have variable size --- pcbnew/router/pns_debug_decorator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/router/pns_debug_decorator.h b/pcbnew/router/pns_debug_decorator.h index 5f5e29017b..70eefad884 100644 --- a/pcbnew/router/pns_debug_decorator.h +++ b/pcbnew/router/pns_debug_decorator.h @@ -43,7 +43,7 @@ public: virtual void NewStage( const std::string& name, int iter ) {}; virtual void BeginGroup( const std::string name ) {}; virtual void EndGroup( ) {}; - virtual void AddPoint( VECTOR2I aP, int aColor, const std::string aName = "" ) {}; + virtual void AddPoint( VECTOR2I aP, int aColor, int aSize = 100000, const std::string aName = "" ) {}; virtual void AddLine( const SHAPE_LINE_CHAIN& aLine, int aType = 0, int aWidth = 0, const std::string aName = "" ) {}; virtual void AddSegment( SEG aS, int aColor, const std::string aName = "" ) {}; virtual void AddBox( BOX2I aB, int aColor, const std::string aName = "" ) {};