From f3822e6ffa7467ada08a69358ea90550722fef08 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 14 Feb 2013 20:56:45 +0100 Subject: [PATCH] MacOSX: Now Arcs are shown in edit mode --- common/gr_basic.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/common/gr_basic.cpp b/common/gr_basic.cpp index 3b43ca1894..9706ad5016 100644 --- a/common/gr_basic.cpp +++ b/common/gr_basic.cpp @@ -355,8 +355,9 @@ void GRSetColorPen( wxDC* DC, EDA_COLOR_T Color, int width, wxPenStyle style ) width = 0; #ifdef __WXMAC__ - // Under OSX when wxPen is set to 0, cocoa follows the request drawing nothing - if( width == 0) + // Under OSX when wxPen is set to 0, cocoa follows the request drawing nothing & + // in the bitmap world the minimum is enough to light a pixel, in vectorial one not + if( width <= 1 ) width = DC->DeviceToLogicalXRel( 1 ); #endif