From 9e6b869bd453df518f6403a3bf73587075cffa65 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 21 Mar 2017 19:46:50 +0100 Subject: [PATCH] Enlarge the preset dialog to avoid horizontal scrollbars --- lib/Slic3r/GUI/PresetEditorDialog.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GUI/PresetEditorDialog.pm b/lib/Slic3r/GUI/PresetEditorDialog.pm index 349f1e871..d706622a3 100644 --- a/lib/Slic3r/GUI/PresetEditorDialog.pm +++ b/lib/Slic3r/GUI/PresetEditorDialog.pm @@ -10,7 +10,7 @@ __PACKAGE__->mk_accessors(qw(preset_editor)); sub new { my ($class, $parent) = @_; - my $self = $class->SUPER::new($parent, -1, "Settings", wxDefaultPosition, [800,500], + my $self = $class->SUPER::new($parent, -1, "Settings", wxDefaultPosition, [900,500], wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxDIALOG_EX_METAL); $self->preset_editor($self->preset_editor_class->new($self));