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. 2
      pcbnew/pcb_parser.h

2
pcbnew/pcb_parser.h

@ -345,6 +345,8 @@ public:
{
init();
m_board = aBoard;
if( aBoard != nullptr )
m_resetKIIDs = true;
}

Loading…
Cancel
Save