Ignore:
Timestamp:
Apr 25, 2013 2:16:58 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:
523f828
Parents:
8833c77
Message:

Instead of mdi, use wxframe on linux

File:
1 edited

Legend:

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

    re35534f rd0923a3  
    1515from matplotlib.figure import Figure 
    1616from sans.guiframe.events import StatusEvent  
    17         
     17from sans.perspectives.calculator import calculator_widgets as widget    
    1818#Control panel width  
    1919if sys.platform.count("win32") > 0: 
     
    934934        self.draw() 
    935935         
    936 class DataOperatorWindow(wx.MDIChildFrame): 
     936class DataOperatorWindow(widget.CHILD_FRAME): 
    937937    def __init__(self, parent, manager, *args, **kwds): 
    938938        kwds["size"] = (PANEL_WIDTH, PANEL_HEIGTH) 
    939         wx.MDIChildFrame.__init__(self, parent, *args, **kwds) 
     939        widget.CHILD_FRAME.__init__(self, parent, *args, **kwds) 
    940940        self.parent = parent 
    941941        self.manager = manager 
Note: See TracChangeset for help on using the changeset viewer.