Commit 35c00f6d authored by kliment's avatar kliment

Treat STL and Stl files like stl files and skein them.

parent 0b2ad078
......@@ -634,7 +634,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
path = os.path.split(name)[0]
if path != self.settings.last_file_path:
self.set("last_file_path",path)
if name.endswith(".stl"):
if name.lower().endswith(".stl"):
self.skein(name)
else:
self.f=[i.replace("\n","").replace("\r","") for i in open(name)]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment