Bugfix: recent refactoring broke slicing from plater on multi-threaded perls
This commit is contained in:
parent
92754d7cd4
commit
9933132ae6
@ -483,6 +483,7 @@ sub export_gcode {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$self->statusbar->StartBusy;
|
$self->statusbar->StartBusy;
|
||||||
|
$self->{print}->config($self->skeinpanel->config); # set this before spawning the thread because ->config needs GetParent and it's not available there
|
||||||
if ($Slic3r::have_threads) {
|
if ($Slic3r::have_threads) {
|
||||||
$self->{export_thread} = threads->create(sub {
|
$self->{export_thread} = threads->create(sub {
|
||||||
$self->export_gcode2(
|
$self->export_gcode2(
|
||||||
@ -530,7 +531,6 @@ sub export_gcode2 {
|
|||||||
|
|
||||||
eval {
|
eval {
|
||||||
my $print = $self->{print};
|
my $print = $self->{print};
|
||||||
$print->config($self->skeinpanel->config);
|
|
||||||
$print->config->validate;
|
$print->config->validate;
|
||||||
$print->validate;
|
$print->validate;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user