mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 17:58:03 -06:00
Don't output slic3r:z attribute in SVG for raft layers
This commit is contained in:
parent
e2b1b52679
commit
8605969dc5
5 changed files with 10 additions and 8 deletions
|
@ -190,10 +190,9 @@ PrintObject::get_support_layer(int idx)
|
|||
}
|
||||
|
||||
SupportLayer*
|
||||
PrintObject::add_support_layer(int id, coordf_t height, coordf_t print_z,
|
||||
coordf_t slice_z)
|
||||
PrintObject::add_support_layer(int id, coordf_t height, coordf_t print_z)
|
||||
{
|
||||
SupportLayer* layer = new SupportLayer(id, this, height, print_z, slice_z);
|
||||
SupportLayer* layer = new SupportLayer(id, this, height, print_z, -1);
|
||||
support_layers.push_back(layer);
|
||||
return layer;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue