mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 09:47:58 -06:00
Minor fix in debug code
This commit is contained in:
parent
314f377d7b
commit
da1b6117df
1 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ sub output {
|
||||||
);
|
);
|
||||||
$g->$method(
|
$g->$method(
|
||||||
%$path,
|
%$path,
|
||||||
'marker-end' => $arrows ? "" : "url(#endArrow)",
|
'marker-end' => !$arrows ? "" : "url(#endArrow)",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} elsif ($type =~ /^(?:(.+?)_)?points$/) {
|
} elsif ($type =~ /^(?:(.+?)_)?points$/) {
|
||||||
|
@ -117,7 +117,7 @@ sub output {
|
||||||
style => {
|
style => {
|
||||||
'stroke' => $colour || 'black',
|
'stroke' => $colour || 'black',
|
||||||
},
|
},
|
||||||
'marker-end' => $arrows ? "" : "url(#endArrow)",
|
'marker-end' => !$arrows ? "" : "url(#endArrow)",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue