Skip to content

Commit

Permalink
FIX: [4815] fix reload model from disk issue
Browse files Browse the repository at this point in the history
Jira: STUDIO-4815

Change-Id: Id359ba2e6078bc258edbb2681fcdb8684e0726b0
Signed-off-by: maosheng.wei <[email protected]>
  • Loading branch information
DanBao-Bambu authored and lanewei120 committed Nov 9, 2023
1 parent dc1d7b1 commit 3d3e47a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slic3r/GUI/Plater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8207,7 +8207,7 @@ int Plater::save_project(bool saveAs)
return wxID_CANCEL;

//BBS export 3mf without gcode
if (export_3mf(into_path(filename), SaveStrategy::SplitModel | SaveStrategy::ShareMesh) < 0) {
if (export_3mf(into_path(filename), SaveStrategy::SplitModel | SaveStrategy::ShareMesh | SaveStrategy::FullPathSources) < 0) {
MessageDialog(this, _L("Failed to save the project.\nPlease check whether the folder exists online or if other programs open the project file."),
_L("Save project"), wxOK | wxICON_WARNING).ShowModal();
return wxID_CANCEL;
Expand Down

0 comments on commit 3d3e47a

Please sign in to comment.