From 4b0caf131bd320bae94d6764b763e75e40a77363 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sun, 14 Oct 2018 14:40:16 -0500 Subject: [PATCH] #2305 Autocaclulate WxChoice width instead of using fixed size. --- lib/Slic3r/GUI/PresetEditor.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GUI/PresetEditor.pm b/lib/Slic3r/GUI/PresetEditor.pm index 570cf86db..256394042 100644 --- a/lib/Slic3r/GUI/PresetEditor.pm +++ b/lib/Slic3r/GUI/PresetEditor.pm @@ -28,7 +28,7 @@ sub new { my $left_sizer = Wx::BoxSizer->new(wxVERTICAL); $self->{sizer}->Add($left_sizer, 0, wxEXPAND | wxLEFT | wxTOP | wxBOTTOM, 3); - my $left_col_width = 150; + my $left_col_width = -1; # preset chooser {