Browse Source

Fix incorrect use of ShowQuasiModal instead of ShowModal.

Fixes #6653
https://gitlab.com/kicad/code/kicad/issues/6653
6.0.7
jean-pierre charras 5 years ago
parent
commit
86b631b31e
  1. 4
      pcbnew/pcb_edit_frame.cpp

4
pcbnew/pcb_edit_frame.cpp

@ -1538,8 +1538,8 @@ void PCB_EDIT_FRAME::ShowFootprintPropertiesDialog( FOOTPRINT* aFootprint )
DIALOG_FOOTPRINT_PROPERTIES* dlg = new DIALOG_FOOTPRINT_PROPERTIES( this, aFootprint );
// Must be QuasiModal for Configure Paths > Help
int retvalue = dlg->ShowQuasiModal();
// Must be modal because we destroy the dialog on return.
int retvalue = dlg->ShowModal();
/*
* retvalue =
* FP_PROPS_UPDATE_FP to show Update Footprints dialog

Loading…
Cancel
Save