mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-17 10:32:20 +00:00
ENH: buildvolume: add logic to support extruder_printable_height
jira: no-jira Change-Id: I962c4aed8c536c0fd8b89ae090cd0463c5d645db (cherry picked from commit 43773d77010492453473797e77e83e9a4630c25f)
This commit is contained in:
@@ -1386,6 +1386,18 @@ void GLCanvas3D::construct_error_string(ObjectFilamentResults& object_result, st
|
||||
error_string += _u8L("Please solve the problem by moving them within the build volume.\n");
|
||||
}
|
||||
else {
|
||||
error_string += _u8L("In the Filament manual-matching mode, Following filament->extruder maps: \n");
|
||||
for (auto& filament: object_result.filaments)
|
||||
{
|
||||
error_string += std::to_string(filament) + "->" + std::to_string(object_result.filament_maps[filament]) + "\n";
|
||||
}
|
||||
error_string += "cannot be printed as they are placed in the unprintable area of the corresponding extruder. This may be caused by the following objects:\n";
|
||||
for(ObjectFilamentInfo& object_filament: object_result.object_filaments)
|
||||
{
|
||||
error_string += object_filament.object->name;
|
||||
error_string += "\n";
|
||||
}
|
||||
error_string += _u8L("Please solve the problem by moving them within the build volume.\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user