#372 Fix variable layer height: z_step wasn't in the plater setting list.

This commit is contained in:
supermerill 2020-07-31 16:54:36 +02:00
parent 46f63cb7aa
commit d94038983e
2 changed files with 3 additions and 2 deletions

View File

@ -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.

View File

@ -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)