Commit 02f76339 authored by Jeremy Kajikawa's avatar Jeremy Kajikawa

Modified: weaver.py

Updated UI layout some more...
  just a few flow buttons to add
the Wxyz panel needs to be put in with its own layout as well

Currently things look a little bit skewed but almost clean.
parent dd9c8324
......@@ -77,9 +77,9 @@ try:
hbox.Add(self.LoadGCode, 0, wx.ALL, 0)
vbox.Add(hbox, 0, wx.ALL, 1)
hbox = wx.BoxSizer(wx.HORIZONTAL)
self.PrintCancel = wx.Button(self, wx.ID_ANY, 'Print')
self.PrintCancel = wx.ToggleButton(self, wx.ID_ANY, 'Print')
hbox.Add(self.PrintCancel, 0, wx.ALL, 0)
self.PauseResume = wx.Button(self, wx.ID_ANY, 'Pause')
self.PauseResume = wx.ToggleButton(self, wx.ID_ANY, 'Pause')
hbox.Add(self.PauseResume, 0, wx.ALL, 0)
vbox.Add(hbox, 0, wx.ALL, 1)
hbox = wx.BoxSizer(wx.HORIZONTAL)
......
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