From 959681e4723493244e4065d6a93767d298f0cf8f Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sun, 14 Aug 2022 22:54:27 +0100 Subject: [PATCH] Config Paths help is now inside the dialog, so we don't need quasimodal here anymore. --- pcbnew/pcb_edit_frame.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pcbnew/pcb_edit_frame.cpp b/pcbnew/pcb_edit_frame.cpp index b840e92aa2..cffe612ae7 100644 --- a/pcbnew/pcb_edit_frame.cpp +++ b/pcbnew/pcb_edit_frame.cpp @@ -1767,8 +1767,7 @@ void PCB_EDIT_FRAME::ShowFootprintPropertiesDialog( FOOTPRINT* aFootprint ) { DIALOG_FOOTPRINT_PROPERTIES dlg( this, aFootprint ); - // We use quasi modal to allow displaying help dialogs. - dlg.ShowQuasiModal(); + dlg.ShowModal(); retvalue = dlg.GetReturnValue(); }