From bd977fffa87411403f7c15d0c5bef33d9b2592b2 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Wed, 25 Jan 2023 13:59:21 -0500 Subject: [PATCH] PCM: Make the progress dialog non-modal on other platforms --- kicad/pcm/pcm_task_manager.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/kicad/pcm/pcm_task_manager.cpp b/kicad/pcm/pcm_task_manager.cpp index 8dbb8ae525..7b03fc4891 100644 --- a/kicad/pcm/pcm_task_manager.cpp +++ b/kicad/pcm/pcm_task_manager.cpp @@ -406,7 +406,11 @@ void PCM_TASK_MANAGER::InstallFromFile( wxWindow* aParent, const wxString& aFile } m_reporter = std::make_unique( aParent, false ); +#ifdef __WXMAC__ m_reporter->ShowWindowModal(); +#else + m_reporter->Show(); +#endif if( isUpdate ) { @@ -571,7 +575,11 @@ void PCM_TASK_MANAGER::RunQueue( wxWindow* aParent ) m_reporter = std::make_unique( aParent ); m_reporter->SetNumPhases( m_download_queue.size() + m_install_queue.size() ); +#ifdef __WXMAC__ m_reporter->ShowWindowModal(); +#else + m_reporter->Show(); +#endif wxSafeYield();