Index: trunk/src/flag.h =================================================================== --- trunk/src/flag.h (revision 11666) +++ trunk/src/flag.h (revision 11667) @@ -78,7 +78,6 @@ PCB_FLAG_ONSOLDER = 0x00080, /*!< For elements and pads, indicates that they are on the solder side. */ PCB_FLAG_AUTO = 0x00080, /*!< For lines and vias, indicates that these were created by the autorouter. */ PCB_FLAG_SQUARE = 0x00100, /*!< For pins and pads, indicates a square (vs round) pin/pad. */ - PCB_FLAG_CLEARPOLYPOLY= 0x00100, /*!< For polygons, apply clearance to nearby polygons */ PCB_FLAG_RUBBEREND = 0x00200, /*!< For lines, used internally for rubber band moves: indicates one end already rubber banding. */ PCB_FLAG_WARN = 0x00200, /*!< For pins, vias, and pads, set to indicate a warning. */ PCB_FLAG_USETHERMAL = 0x00400, /*!< Obsolete, indicates that pins/vias should be drawn with thermal fingers. */ @@ -92,7 +91,8 @@ PCB_FLAG_MINCUT = 0x20000, /* used by the mincut short find code */ PCB_FLAG_ONPOINT = 0x40000, /*!< crosshair is on line point or arc point */ PCB_FLAG_TERMNAME = 0x80000, /*!< when set the names of pins are shown. */ - PCB_FLAG_DRC_INTCONN = 0x100000 /*!< Set for objects are put on the DRC mark because of an intconn */ + PCB_FLAG_DRC_INTCONN = 0x100000,/*!< Set for objects are put on the DRC mark because of an intconn */ + PCB_FLAG_CLEARPOLYPOLY= 0x200000 /*!< For polygons, apply clearance to nearby polygons */ /* PCB_FLAG_NOCOPY = (PCB_FLAG_FOUND | CONNECTEDFLAG | PCB_FLAG_ONPOINT)*/ } pcb_flag_values_t; Index: trunk/src/flag_str.c =================================================================== --- trunk/src/flag_str.c (revision 11666) +++ trunk/src/flag_str.c (revision 11667) @@ -76,7 +76,8 @@ {PCB_FLAG_FULLPOLY, N("fullpoly"), PCB_TYPE_POLYGON}, {PCB_FLAG_NOPASTE, N("nopaste"), PCB_TYPE_PAD}, {PCB_FLAG_NONETLIST, N("nonetlist"), PCB_TYPEMASK_ALL}, - {PCB_FLAG_TERMNAME, N("termname"), PCB_TYPE_LINE | PCB_TYPE_ARC | PCB_TYPE_POLYGON | PCB_TYPE_TEXT | PCB_TYPE_PIN | PCB_TYPE_PAD | PCB_TYPE_SUBC} + {PCB_FLAG_TERMNAME, N("termname"), PCB_TYPE_LINE | PCB_TYPE_ARC | PCB_TYPE_POLYGON | PCB_TYPE_TEXT | PCB_TYPE_PIN | PCB_TYPE_PAD | PCB_TYPE_SUBC}, + {PCB_FLAG_CLEARPOLYPOLY, N("clearpolypoly"), PCB_TYPE_POLYGON} }; #undef N