Browse Source

Fix really bad bug where KIIDs always get reset when reading files.

Mea culpa.

Fixes https://gitlab.com/kicad/code/kicad/issues/5106
pull/16/head
Jeff Young 5 years ago
parent
commit
484643c5ed
  1. 4
      pcbnew/pcb_parser.h

4
pcbnew/pcb_parser.h

@ -345,7 +345,9 @@ public:
{
init();
m_board = aBoard;
m_resetKIIDs = true;
if( aBoard != nullptr )
m_resetKIIDs = true;
}
BOARD_ITEM* Parse();

Loading…
Cancel
Save