← Back to team overview

kicad-developers team mailing list archive

Re: MacOSX - Problems with placing of components/modules.

 

Sorry the correct version is the following

Index: gr_basic.cpp
===================================================================
--- gr_basic.cpp	(revision 1666)
+++ gr_basic.cpp	(working copy)
@@ -375,7 +375,11 @@
else if( draw_mode & GR_XOR )
DC->SetLogicalFunction( wxXOR );
else if( draw_mode & GR_NXOR )
+#if defined(__WXMAC__) && wxMAC_USE_CORE_GRAPHICS
+ DC->SetLogicalFunction( wxXOR );
+#else
DC->SetLogicalFunction( wxEQUIV );
+#endif
else
DC->SetLogicalFunction( wxCOPY );
}








References