Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2011-10-04 20:00:01 +0400
committerAlessandro Ranellucci <aar@cpan.org>2011-10-04 20:00:01 +0400
commit706586f1502fcb378f7badea1e120e15a2c94f61 (patch)
tree84b6978510447222a591e57e8d116541b873b86d /lib/Slic3r/GUI
parent794b7a99d2ac4ffd1d204bf08a5a31a2121d8db7 (diff)
Allow .STL files as well as .stl
Diffstat (limited to 'lib/Slic3r/GUI')
-rw-r--r--lib/Slic3r/GUI/SkeinPanel.pm2
1 files changed, 1 insertions, 1 deletions
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);