mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 23:17:35 -06:00
FIX: charset error when load file from command line
Change-Id: I8e84256454be11eaf76ef2e1736a7b221b66cf1c
This commit is contained in:
parent
3b5ae871af
commit
392ddf9047
1 changed files with 1 additions and 1 deletions
|
@ -1050,7 +1050,7 @@ void GUI_App::post_init()
|
|||
plater_->select_view_3D("3D");
|
||||
wxArrayString input_files;
|
||||
for (auto & file : this->init_params->input_files) {
|
||||
input_files.push_back(file);
|
||||
input_files.push_back(wxString::FromUTF8(file));
|
||||
}
|
||||
this->plater()->set_project_filename(_L("Untitled"));
|
||||
this->plater()->load_files(input_files);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue