From 1cc0a79188d413ff80a0868b9acafcf0c4895061 Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Thu, 26 Jul 2012 16:50:57 +0200 Subject: [PATCH] Allow the list and buttons to expand upon window resize --- 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 66f3b22f1..227d16312 100644 --- a/lib/Slic3r/GUI/Plater.pm +++ b/lib/Slic3r/GUI/Plater.pm @@ -220,7 +220,7 @@ sub new { $presets->AddStretchSpacer(1); my $sizer = Wx::BoxSizer->new(wxVERTICAL); - $sizer->Add($hsizer, 0, wxEXPAND | wxBOTTOM, 10); + $sizer->Add($hsizer, 1, wxEXPAND | wxBOTTOM, 10); $sizer->Add($presets, 0, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 10); $sizer->SetSizeHints($self);