From 0669ed118dc7431612993af572442efe713f44c7 Mon Sep 17 00:00:00 2001 From: "lane.wei" Date: Thu, 11 Aug 2022 21:45:46 +0800 Subject: [PATCH] fix the plugin status not correct shown issue When BambuSource is missed, we need to set the compatible status to false also Change-Id: Ie0204035aec81b01b438d65747863999f983f4f1 --- src/slic3r/GUI/GUI_App.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 660a4237a3..194b3ae44d 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -2206,6 +2206,7 @@ __retry: auto bambu_source = Slic3r::NetworkAgent::get_bambu_source_entry(); if (!bambu_source) { BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << ": can not get bambu source module!"; + m_networking_compatible = false; if (app_config->get("installed_networking") == "1") { m_networking_need_update = true; }