Commit 78e585e6 authored by Kliment's avatar Kliment

Set default list style in plater

parent 3f5f6d7d
......@@ -16,7 +16,7 @@ class stlwrap:
class showstl(wx.Window):
def __init__(self,parent,size,pos):
wx.Window.__init__(self,parent,size=size,pos=pos)
self.l=wx.ListCtrl(self,size=(300,100),pos=(0,size[1]-100))
self.l=wx.ListCtrl(self,style=wx.LC_LIST,size=(300,100),pos=(0,size[1]-100))
self.eb=wx.Button(self,label="Export",pos=(300,size[1]-100))
self.sb=wx.Button(self,label="Snap to Z=0",pos=(300,size[1]-70))
self.cb=wx.Button(self,label="Put at 100,100",pos=(300,size[1]-40))
......
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