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

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;
}