mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 09:47:58 -06:00
Bugfix: spiral vase was not working when extrusion axis was not E. #2350
This commit is contained in:
parent
c1e26a70f8
commit
2c64c3dd5b
5 changed files with 35 additions and 9 deletions
|
@ -29,14 +29,7 @@ void
|
|||
GCodeWriter::apply_print_config(const PrintConfig &print_config)
|
||||
{
|
||||
this->config.apply(print_config, true);
|
||||
|
||||
if (FLAVOR_IS(gcfMach3)) {
|
||||
this->_extrusion_axis = "A";
|
||||
} else if (FLAVOR_IS(gcfNoExtrusion)) {
|
||||
this->_extrusion_axis = "";
|
||||
} else {
|
||||
this->_extrusion_axis = this->config.extrusion_axis;
|
||||
}
|
||||
this->_extrusion_axis = this->config.get_extrusion_axis();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue