Skip to content

Commit

Permalink
Fixed an bug that plate name was not used in some cases
Browse files Browse the repository at this point in the history
Fixed #5556
  • Loading branch information
SoftFever committed Jun 6, 2024
1 parent cb4b84c commit 03e5da3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/slic3r/GUI/Plater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7611,9 +7611,9 @@ wxString Plater::priv::get_export_gcode_filename(const wxString& extension, bool
}
} else {
if (export_all)
return m_project_name + from_u8(plate_index_str) + extension;
else
return m_project_name + extension;
else
return m_project_name + from_u8(plate_index_str) + extension;
}
} else {
if (only_filename) {
Expand Down

0 comments on commit 03e5da3

Please sign in to comment.