Changeset 773 for moxy/trunk
- Timestamp:
- Feb 1, 2012 5:13:17 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified moxy/trunk/src/moxy/wx_motorpanel.py ¶
r764 r773 29 29 30 30 31 class M ainFrame(wx.Frame):31 class MotorFrame(wx.Frame): 32 32 def __init__(self, motor_pvs): 33 33 title = "motors: " + " ".join(motor_pvs) … … 51 51 if len(sys.argv) > 1: 52 52 app = wx.App() 53 M ainFrame(sys.argv[1:]).Show()53 MotorFrame(sys.argv[1:]).Show() 54 54 app.MainLoop()
Note: See TracChangeset
for help on using the changeset viewer.