mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 08:47:52 -06:00
Fixes of the wipe tower
- added an extra travel move after a toolchange - wipe tower only sets temperatures with single extruder MM printers - ooze prevention does not work with the wipe tower - added a check into Print::validate()
This commit is contained in:
parent
e6263ef5dd
commit
af2a3d2c08
2 changed files with 16 additions and 5 deletions
|
@ -1189,6 +1189,8 @@ std::string Print::validate() const
|
|||
return L("The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors.");
|
||||
if (! m_config.use_relative_e_distances)
|
||||
return L("The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1).");
|
||||
if (m_config.ooze_prevention)
|
||||
return L("Ooze prevention is currently not supported with the wipe tower enabled.");
|
||||
|
||||
if (m_objects.size() > 1) {
|
||||
bool has_custom_layering = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue