mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-03-06 18:44:43 -07:00
FIX: the text encoding problem
jira: [STUDIO-12251] Change-Id: Ie485eaad3fac8a9f0aa84d4f2ff85708a3c984b5 (cherry picked from commit 7a054c7618851af6f4360a3df5f4415dc138f482)
This commit is contained in:
parent
860e0f6308
commit
6d5dca8961
1 changed files with 2 additions and 2 deletions
|
|
@ -569,13 +569,13 @@ void AMSMaterialsSetting::on_select_ok(wxCommandEvent &event)
|
|||
|
||||
if (in_blacklist) {
|
||||
if (action == "prohibition") {
|
||||
MessageDialog msg_wingow(nullptr, wxString::FromUTF8(info), _L("Error"), wxICON_WARNING | wxOK);
|
||||
MessageDialog msg_wingow(nullptr, info, _L("Error"), wxICON_WARNING | wxOK);
|
||||
msg_wingow.ShowModal();
|
||||
//m_comboBox_filament->SetSelection(m_filament_selection);
|
||||
return;
|
||||
}
|
||||
else if (action == "warning") {
|
||||
MessageDialog msg_wingow(nullptr, wxString::FromUTF8(info), _L("Warning"), wxICON_INFORMATION | wxOK);
|
||||
MessageDialog msg_wingow(nullptr, info, _L("Warning"), wxICON_INFORMATION | wxOK);
|
||||
msg_wingow.ShowModal();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue