Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion wipe_towers_v01.pl
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,11 @@ sub readParams{ # collecting params
$filamentDiameter=$1*1.0;
}
if($_[0]=~/extrusionWidth=(\d*\.?\d*)/){
$extrusionWidth=$1*1.0;
# Use the specified extrusion width, unless it is set to the "automatic" value of 0,
# in which case the pre-initialized value of $nozzleDiameter will be used
unless ( $1 eq "0" ) {
$extrusionWidth=$1*1.0;
}
}
if($_[0]=~/extrusionMultiplier=(\d*\.?\d*)/){
$extrusionMultiplier=$1*1.0;
Expand Down