Browse Source

Fixed fatal assert on track removal.

pull/5/head
Maciej Suminski 10 years ago
parent
commit
8c80f0b4dd
  1. 6
      pcbnew/netlist.cpp

6
pcbnew/netlist.cpp

@ -137,11 +137,9 @@ void PCB_EDIT_FRAME::ReadPcbNetlist( const wxString& aNetlistFileName,
RemoveMisConnectedTracks();
}
Compile_Ratsnest( NULL, true );
// Rebuild the board connectivity:
if( IsGalCanvasActive() )
board->GetRatsnest()->ProcessBoard();
Compile_Ratsnest( NULL, true );
board->GetRatsnest()->ProcessBoard();
SetMsgPanel( board );
m_canvas->Refresh();

Loading…
Cancel
Save