FIX: network plugins tip disappear on dark mode

Change-Id: I422ab63f71158a49920438f01dd9c39774c27744
Jira: STUDIO-4891
This commit is contained in:
chunmao.guo 2023-12-21 16:44:17 +08:00 committed by Lane.Wei
parent 860ea9b097
commit 6c24a477cd
2 changed files with 3 additions and 1 deletions

View File

@ -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
}

View File

@ -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)