mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-06 21:44:08 -06:00
FIX: export notification encoding display issue
Jira: STUDIO-3807 Change-Id: If5a6651ba1f29ad35d6e11ed76f959b3d0864be6
This commit is contained in:
parent
09ed7ac18e
commit
4c68a7634c
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ void SendJob::process()
|
||||||
else {
|
else {
|
||||||
BOOST_LOG_TRIVIAL(error) << "send_job: send ok.";
|
BOOST_LOG_TRIVIAL(error) << "send_job: send ok.";
|
||||||
wxCommandEvent* evt = new wxCommandEvent(m_print_job_completed_id);
|
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);
|
wxQueueEvent(m_plater, evt);
|
||||||
m_job_finished = true;
|
m_job_finished = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue