Ignore:
Timestamp:
Apr 24, 2013 12:16:12 PM (11 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
b07ffca
Parents:
9159cb9
Message:

put most tools in MDI.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • calculatorview/src/sans/perspectives/calculator/slit_length_calculator_panel.py

    rae84427 r7aa1685  
    251251     
    252252     
    253 class SlitLengthCalculatorWindow(wx.Frame): 
     253class SlitLengthCalculatorWindow(wx.MDIChildFrame): 
    254254    """ 
    255255    """ 
     
    260260        kwds['size']= size 
    261261        kwds['title']= title 
    262         wx.Frame.__init__(self, parent, *args, **kwds) 
     262        wx.MDIChildFrame.__init__(self, parent, *args, **kwds) 
    263263        self.parent = parent 
    264264        self.manager = manager 
    265265        self.panel = SlitLengthCalculatorPanel(parent=self) 
    266266        self.Bind(wx.EVT_CLOSE, self.on_close) 
    267         self.Centre() 
     267        #self.Centre() 
     268        self.SetPosition((0, 0)) 
    268269        self.Show(True) 
    269270 
Note: See TracChangeset for help on using the changeset viewer.