From 706586f1502fcb378f7badea1e120e15a2c94f61 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 4 Oct 2011 18:00:01 +0200 Subject: [PATCH] Allow .STL files as well as .stl --- lib/Slic3r/GUI/SkeinPanel.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GUI/SkeinPanel.pm b/lib/Slic3r/GUI/SkeinPanel.pm index 19bea64c5..eb250072b 100644 --- a/lib/Slic3r/GUI/SkeinPanel.pm +++ b/lib/Slic3r/GUI/SkeinPanel.pm @@ -230,7 +230,7 @@ sub do_slice { Slic3r::Config->validate; # select input file - my $dialog = Wx::FileDialog->new($self, 'Choose a STL file to slice:', "", "", "*.stl", wxFD_OPEN); + my $dialog = Wx::FileDialog->new($self, 'Choose a STL file to slice:', "", "", "STL files *.stl|*.stl;*.STL", wxFD_OPEN); return unless $dialog->ShowModal == wxID_OK; my ($input_file) = $dialog->GetPaths; my $input_file_basename = basename($input_file);