FIX: export notification encoding display issue

Jira: STUDIO-3807

Change-Id: If5a6651ba1f29ad35d6e11ed76f959b3d0864be6
This commit is contained in:
liz.li 2023-09-07 10:01:25 +08:00 committed by Lane.Wei
parent 09ed7ac18e
commit 4c68a7634c
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ void SendJob::process()
else {
BOOST_LOG_TRIVIAL(error) << "send_job: send ok.";
wxCommandEvent* evt = new wxCommandEvent(m_print_job_completed_id);
evt->SetString(params.project_name);
evt->SetString(from_u8(params.project_name));
wxQueueEvent(m_plater, evt);
m_job_finished = true;
}