From e47a1e7d90a4daffbe367742471d72343a09fd5a Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 4 Apr 2017 11:59:51 +0200 Subject: [PATCH] Fix the Send to Printer dialog. #3789 #3811 --- lib/Slic3r/GUI/Plater.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GUI/Plater.pm b/lib/Slic3r/GUI/Plater.pm index 6b21b8aad..b641398dc 100644 --- a/lib/Slic3r/GUI/Plater.pm +++ b/lib/Slic3r/GUI/Plater.pm @@ -2573,7 +2573,7 @@ sub new { EVT_BUTTON($self, wxID_OK, sub { wxTheApp->save_settings; $self->EndModal(wxID_OK); - $self->Close; # needed on Linux + $self->Destroy; }); $self->SetSizer($sizer);