Fix the Send to Printer dialog. #3789 #3811

This commit is contained in:
Alessandro Ranellucci 2017-04-04 11:59:51 +02:00
parent 43506ee376
commit e47a1e7d90

View File

@ -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);