Avoid Pcbnew crash when double clicking in DIALOG_DRC on a error item.

This commit is contained in:
jean-pierre charras 2020-09-28 21:07:51 +02:00
parent c21883c8c9
commit 39d2a46b30
1 changed files with 2 additions and 1 deletions

View File

@ -363,7 +363,8 @@ void DIALOG_DRC::OnDRCItemDClick( wxDataViewEvent& aEvent )
Show( false );
}
aEvent.Skip();
// Do not skip aVent here: tihs is not useful, and Pcbnew crashes
// if skipped (at least on Windows)
}