Commit b66811a6 authored by Gary Hodgson's avatar Gary Hodgson Committed by Guillaume Seguin

removed erroneous message that layer height is detected for bitmaps

parent 50dbb802
...@@ -60,7 +60,7 @@ class dispframe(wx.Frame): ...@@ -60,7 +60,7 @@ class dispframe(wx.Frame):
self.Refresh() self.Refresh()
except: except:
raise raise
pass pass
def resize(self, res=(1024, 768)): def resize(self, res=(1024, 768)):
self.bitmap = wx.EmptyBitmap(*res) self.bitmap = wx.EmptyBitmap(*res)
...@@ -300,7 +300,7 @@ class setframe(wx.Frame): ...@@ -300,7 +300,7 @@ class setframe(wx.Frame):
layers = self.parsesvg(name) layers = self.parsesvg(name)
layerHeight = layers[1] layerHeight = layers[1]
self.thickness.SetValue(str(layers[1])) self.thickness.SetValue(str(layers[1]))
print "Layer thickness detected:", layerHeight, "mm" print "Layer thickness detected:", layerHeight, "mm"
print len(layers[0]), "layers found, total height", layerHeight * len(layers[0]), "mm" print len(layers[0]), "layers found, total height", layerHeight * len(layers[0]), "mm"
self.layers = layers self.layers = layers
self.f.slicer = layers[2] self.f.slicer = layers[2]
......
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