GUI fixes for Windows

This commit is contained in:
Alessandro Ranellucci 2011-10-03 13:08:43 +02:00
parent f2f9178e07
commit 558e86e72d
3 changed files with 10 additions and 3 deletions

View file

@ -25,10 +25,14 @@ sub OnInit {
my $panel = Slic3r::GUI::SkeinPanel->new($frame);
my $box = Wx::BoxSizer->new(wxVERTICAL);
$box->Add($panel, 0, wxALL, 20);
$box->Add($panel, 0);
$frame->SetSizerAndFit($box);
$box->SetSizeHints($frame);
$frame->SetSizer($box);
$frame->Show;
$frame->Layout;
return 1;
}
sub About {