FIX: get exported file name in preview-only mode

Change-Id: Ibea53d951e020ff03c1e7f378714b117a4e8a19f
This commit is contained in:
tao.jin 2022-12-10 14:27:53 +08:00 committed by Lane.Wei
parent 61aa0ddada
commit 9ab6e86b47
2 changed files with 4 additions and 4 deletions

View file

@ -6477,8 +6477,11 @@ void Plater::priv::set_project_filename(const wxString& filename)
//BBS
wxString project_name = from_u8(full_path.filename().string());
set_project_name(project_name);
// record filename for hint when open exported file/.gcode
if (q->m_only_gcode)
q->m_preview_only_filename = std::string((project_name + ".gcode").mb_str());
if (q->m_exported_file)
q->m_preview_only_filename = std::string((project_name + ".3mf").mb_str());
wxGetApp().mainframe->update_title();
@ -8498,9 +8501,6 @@ bool Plater::open_3mf_file(const fs::path &file_path)
}
}
// record filename for hint when open exported file
m_preview_only_filename = filename;
return true;
}