mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 04:05:52 +08:00
Fixed cancel object M486 for Repetier (#11492, SPE-1985)
This commit is contained in:
parent
0df5faff34
commit
04b227b565
@ -147,11 +147,12 @@ std::string LabelObjects::start_object(const PrintInstance& print_instance, Incl
|
|||||||
out += std::string("; printing object ") + label.name + "\n";
|
out += std::string("; printing object ") + label.name + "\n";
|
||||||
else if (m_label_objects_style == LabelObjectsStyle::Firmware) {
|
else if (m_label_objects_style == LabelObjectsStyle::Firmware) {
|
||||||
if (m_flavor == GCodeFlavor::gcfMarlinFirmware || m_flavor == GCodeFlavor::gcfMarlinLegacy || m_flavor == GCodeFlavor::gcfRepRapFirmware) {
|
if (m_flavor == GCodeFlavor::gcfMarlinFirmware || m_flavor == GCodeFlavor::gcfMarlinLegacy || m_flavor == GCodeFlavor::gcfRepRapFirmware) {
|
||||||
out += std::string("M486 S") + std::to_string(label.unique_id) + "\n";
|
out += std::string("M486 S") + std::to_string(label.unique_id);
|
||||||
if (include_name == IncludeName::Yes) {
|
if (include_name == IncludeName::Yes) {
|
||||||
out += std::string("M486 A");
|
out += (m_flavor == GCodeFlavor::gcfRepRapFirmware ? " A" : "\nM486 A");
|
||||||
out += (m_flavor == GCodeFlavor::gcfRepRapFirmware ? (std::string("\"") + label.name + "\"") : label.name) + "\n";
|
out += (m_flavor == GCodeFlavor::gcfRepRapFirmware ? (std::string("\"") + label.name + "\"") : label.name);
|
||||||
}
|
}
|
||||||
|
out += "\n";
|
||||||
} else if (m_flavor == gcfKlipper)
|
} else if (m_flavor == gcfKlipper)
|
||||||
out += "EXCLUDE_OBJECT_START NAME=" + label.name + "\n";
|
out += "EXCLUDE_OBJECT_START NAME=" + label.name + "\n";
|
||||||
else {
|
else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user