1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-31 11:15:52 +00:00

Support Prusa Control project files (.PRUS) by the GUI.

This commit is contained in:
bubnikv
2017-02-27 16:09:22 +01:00
parent 8a8b49ea02
commit 4010dd71f6
6 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -2098,7 +2098,7 @@ sub OnDropFiles {
@_ = ();
# only accept STL, OBJ and AMF files
return 0 if grep !/\.(?:stl|obj|amf(?:\.xml)?)$/i, @$filenames;
return 0 if grep !/\.(?:stl|obj|amf(?:\.xml)?|prus)$/i, @$filenames;
$self->{window}->load_file($_) for @$filenames;
}