mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
New --before-layer-change option and new layer_z placeholder. #2602
This commit is contained in:
parent
2d3fdf920b
commit
059b00a829
6 changed files with 33 additions and 6 deletions
|
@ -945,7 +945,7 @@ sub build {
|
|||
octoprint_host octoprint_apikey
|
||||
use_firmware_retraction pressure_advance vibration_limit
|
||||
use_volumetric_e
|
||||
start_gcode end_gcode layer_gcode toolchange_gcode
|
||||
start_gcode end_gcode before_layer_gcode layer_gcode toolchange_gcode
|
||||
nozzle_diameter extruder_offset
|
||||
retract_length retract_lift retract_speed retract_restart_extra retract_before_travel retract_layer_change wipe
|
||||
retract_length_toolchange retract_restart_extra_toolchange
|
||||
|
@ -1110,7 +1110,16 @@ sub build {
|
|||
$optgroup->append_single_option_line($option);
|
||||
}
|
||||
{
|
||||
my $optgroup = $page->new_optgroup('Layer change G-code',
|
||||
my $optgroup = $page->new_optgroup('Before layer change G-code',
|
||||
label_width => 0,
|
||||
);
|
||||
my $option = $optgroup->get_option('before_layer_gcode');
|
||||
$option->full_width(1);
|
||||
$option->height(150);
|
||||
$optgroup->append_single_option_line($option);
|
||||
}
|
||||
{
|
||||
my $optgroup = $page->new_optgroup('After layer change G-code',
|
||||
label_width => 0,
|
||||
);
|
||||
my $option = $optgroup->get_option('layer_gcode');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue