diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index b067fdb25..996fe2445 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -3485,6 +3485,7 @@ void GUI_App::ShowUserGuide() { if (res) { load_current_presets(); update_publish_status(); + mainframe->refresh_plugin_tips(); // BBS: remove SLA related message } } catch (std::exception &e) { @@ -6183,6 +6184,7 @@ bool GUI_App::run_wizard(ConfigWizard::RunReason reason, ConfigWizard::StartPage if (res) { load_current_presets(); update_publish_status(); + mainframe->refresh_plugin_tips(); // BBS: remove SLA related message } diff --git a/src/slic3r/GUI/WebViewDialog.cpp b/src/slic3r/GUI/WebViewDialog.cpp index b6ce64802..eed718533 100644 --- a/src/slic3r/GUI/WebViewDialog.cpp +++ b/src/slic3r/GUI/WebViewDialog.cpp @@ -587,6 +587,7 @@ void WebViewPanel::OnNavigationComplete(wxWebViewEvent& evt) if (wxGetApp().get_mode() == comDevelop) wxLogMessage("%s", "Navigation complete; url='" + evt.GetURL() + "'"); UpdateState(); + ShowNetpluginTip(); } /** @@ -602,7 +603,6 @@ void WebViewPanel::OnDocumentLoaded(wxWebViewEvent& evt) wxLogMessage("%s", "Document loaded; url='" + evt.GetURL() + "'"); } UpdateState(); - ShowNetpluginTip(); } void WebViewPanel::OnTitleChanged(wxWebViewEvent &evt)