Make the board setup window quasimodal

By making it quasimodal, it allows the main KiCad window and Eeschema
to be used still, if it were just modal then it blocks out all other
windows.

Fixes https://gitlab.com/kicad/code/kicad/issues/4023
This commit is contained in:
Ian McInerney 2020-03-07 19:28:04 +00:00
parent fb00ca12d6
commit 67678faa11
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ void PCB_EDIT_FRAME::DoShowBoardSetupDialog( const wxString& aInitialPage,
if( !aInitialPage.IsEmpty() )
dlg.SetInitialPage( aInitialPage, aInitialParentPage );
if( dlg.ShowModal() == wxID_OK )
if( dlg.ShowQuasiModal() == wxID_OK )
{
SaveProjectSettings();