mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 15:44:12 -06:00
Accept newline as separator for post-processing scripts in GUI. #615
This commit is contained in:
parent
b35c41c1a3
commit
d278998f11
1 changed files with 1 additions and 1 deletions
|
@ -551,7 +551,7 @@ END
|
||||||
full_width => 1,
|
full_width => 1,
|
||||||
height => 60,
|
height => 60,
|
||||||
serialize => sub { join '; ', @{$_[0]} },
|
serialize => sub { join '; ', @{$_[0]} },
|
||||||
deserialize => sub { [ split /\s*;\s*/, $_[0] ] },
|
deserialize => sub { [ split /\s*(?:;|\R)\s*/s, $_[0] ] },
|
||||||
default => [],
|
default => [],
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue