Commit 2eaa28f0 authored by charras's avatar charras
Browse files

Pcbnew: some enhancements

parent e5cbb935
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ KiCad ChangeLog 2009
Please add newer entries at the top, list the date and your name with
email address.

2009-mar-16 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
2009-mar-23 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
++pcbnew:
    in DRC: added test pads to holes.
+6 −6
Original line number Diff line number Diff line
@@ -364,18 +364,18 @@ void GRSetDrawMode( wxDC* DC, int draw_mode )
{
    if( draw_mode & GR_OR )
#if defined(__WXMAC__) && wxMAC_USE_CORE_GRAPHICS


        DC->SetLogicalFunction( wxCOPY );
#else


        DC->SetLogicalFunction( wxOR );
#endif
    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 );
}
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION

#define BUILD_VERSION wxT("(20090332-unstable)")
#define BUILD_VERSION wxT("(20090325-unstable)")

COMMON_GLOBL wxString g_BuildVersion
#ifdef EDA_BASE
+6 −0
Original line number Diff line number Diff line
@@ -287,6 +287,12 @@ public:

    bool DisplayPolarCood;
    int  DisplayZonesMode;
    int  DisplayNetNamesMode;   /* 0 do not show netnames,
                                 * 1 show netnames on pads
                                 * 2 show netnames on tracks
                                 * 3 show netnames on tracks and pads
                                */

    bool Show_Modules_Cmp;
    bool Show_Modules_Cu;

+1.34 KiB (173 KiB)

File changed.

No diff preview for this file type.

Loading