diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index f6402df2f..3c45eb486 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -3092,6 +3092,11 @@ void GUI_App::ShowUserGuide() { void GUI_App::ShowDownNetPluginDlg() { try { + auto iter = std::find_if(dialogStack.begin(), dialogStack.end(), [](auto dialog) { + return dynamic_cast(dialog) != nullptr; + }); + if (iter != dialogStack.end()) + return; DownloadProgressDialog dlg(_L("Downloading Bambu Network Plug-in")); dlg.ShowModal(); } catch (std::exception &e) {