1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-11 08:04:25 +00:00

Remove thread warnings

This commit is contained in:
Alessandro Ranellucci
2012-05-20 16:29:52 +02:00
parent 59ba34caf3
commit 2ae2c6a311
+3 -1
View File
@@ -529,6 +529,7 @@ sub on_export_completed {
my $self = shift;
my ($message) = @_;
$self->{export_thread}->detach;
$self->{export_thread} = undef;
$self->statusbar->SetCancelCallback(undef);
$self->statusbar->StopBusy;
@@ -540,6 +541,7 @@ sub on_export_failed {
my $self = shift;
my ($message) = @_;
$self->{export_thread}->detach;
$self->{export_thread} = undef;
$self->statusbar->SetCancelCallback(undef);
$self->statusbar->StopBusy;
@@ -605,7 +607,7 @@ sub make_thumbnail {
}
};
$Slic3r::have_threads ? threads->create($cb) : $cb->();
$Slic3r::have_threads ? threads->create($cb)->detach : $cb->();
}
sub make_thumbnail2 {