Skip to content

Commit

Permalink
Delete Buttons on side
Browse files Browse the repository at this point in the history
  • Loading branch information
tronburgundy committed Apr 18, 2016
1 parent 88ef335 commit 334cddc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#Main Window
import wx
import platform
from singleChannel import single_deviceconf,single_pref,single_window
from singleChannel import Single_deviceconf,Single_pref,Single_window

class MainWindow(wx.Frame):
"""Constructor to create a frame for the Acoustic ruler control app Main Menu"""
Expand Down Expand Up @@ -147,7 +147,7 @@ def openHelp(self, event):
#launchs the single channel app.
def openSingleChan(self, event):
self.Destroy()
singleChanframe = single_window(parent=None,ID=998)
singleChanframe = Single_window(parent=None,ID=998)
singleChanframe.Centre()
singleChanframe.Show()
#end def
Expand Down
4 changes: 1 addition & 3 deletions singleChannel.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,7 @@ def setup(self):
sizer = wx.GridBagSizer(3,2)
sizer.Add(trgMeasureBoxSizer, pos=(0,0),span=(1,2),
flag=wx.EXPAND|wx.TOP|wx.LEFT|wx.RIGHT|wx.BOTTOM, border=10)
sizer.Add(sysStatusBoxSizer, pos=(1,0),
flag=wx.EXPAND|wx.TOP|wx.LEFT|wx.RIGHT, border=10)
sizer.Add(configBoxSizer, pos=(1,1),
sizer.Add(sysStatusBoxSizer, pos=(1,0), span=(1,2),
flag=wx.EXPAND|wx.TOP|wx.LEFT|wx.RIGHT, border=10)
sizer.Add(feedBoxSizer, pos=(2,0),span=(1,2),
flag=wx.EXPAND|wx.TOP|wx.LEFT|wx.RIGHT, border=10)
Expand Down

0 comments on commit 334cddc

Please sign in to comment.