mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 07:45:58 +08:00
#372 Fix variable layer height: z_step wasn't in the plater setting list.
This commit is contained in:
parent
46f63cb7aa
commit
d94038983e
@ -68,7 +68,7 @@ struct SlicingParameters
|
||||
coordf_t max_suport_layer_height;
|
||||
bool exact_last_layer_height;
|
||||
// min common divisor for all layer height
|
||||
coordf_t z_step;
|
||||
coordf_t z_step;
|
||||
|
||||
// First layer height of the print, this may be used for the first layer of the raft
|
||||
// or for the first layer of the print.
|
||||
|
@ -2073,7 +2073,8 @@ Plater::priv::priv(Plater *q, MainFrame *main_frame)
|
||||
// These values are necessary to construct SlicingParameters by the Canvas3D variable layer height editor.
|
||||
"layer_height", "first_layer_height", "min_layer_height", "max_layer_height",
|
||||
"brim_width", "perimeters", "perimeter_extruder", "fill_density", "infill_extruder", "top_solid_layers",
|
||||
"support_material", "support_material_extruder", "support_material_interface_extruder", "support_material_contact_distance", "raft_layers"
|
||||
"support_material", "support_material_extruder", "support_material_interface_extruder", "support_material_contact_distance", "raft_layers",
|
||||
"z_step"
|
||||
}))
|
||||
, sidebar(new Sidebar(q))
|
||||
, delayed_scene_refresh(false)
|
||||
|
Loading…
x
Reference in New Issue
Block a user