Commit 97128780 authored by Jeremy Kajikawa's avatar Jeremy Kajikawa

modified: weaver.py

FIXED:Broken reference, "OnShellClear" typo as "OnSendClear"

Expanded the Workflow Button listing...

Just needs to have the "Wxyz" controls implimented and the
  Shell View Control fixed for proper display...

After all that only the actual binding code needs to be put together
parent b39458eb
...@@ -99,7 +99,7 @@ try: ...@@ -99,7 +99,7 @@ try:
self.Bind(wx.EVT_BUTTON, self.OnSerialPort, self.SerialPort) self.Bind(wx.EVT_BUTTON, self.OnSerialPort, self.SerialPort)
self.Bind(wx.EVT_BUTTON, self.OnSerialSpeed, self.SerialPort) self.Bind(wx.EVT_BUTTON, self.OnSerialSpeed, self.SerialPort)
self.Bind(wx.EVT_BUTTON, self.OnShellProc, self.ShellProc) self.Bind(wx.EVT_BUTTON, self.OnShellProc, self.ShellProc)
self.Bind(wx.EVT_BUTTON, self.OnSendClear, self.ShellClear) self.Bind(wx.EVT_BUTTON, self.OnShellClear, self.ShellClear)
self.Bind(wx.EVT_BUTTON, self.OnShellSend, self.ShellSend) self.Bind(wx.EVT_BUTTON, self.OnShellSend, self.ShellSend)
self.Bind(wx.EVT_BUTTON, self.OnLoadSTL, self.LoadSTL) self.Bind(wx.EVT_BUTTON, self.OnLoadSTL, self.LoadSTL)
self.Bind(wx.EVT_BUTTON, self.OnLoadGCode, self.LoadGCode) self.Bind(wx.EVT_BUTTON, self.OnLoadGCode, self.LoadGCode)
......
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