Ignore:
Timestamp:
Apr 25, 2013 4: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/resolution_calculator_panel.py

    re35534f rd0923a3  
    3030from wx.lib.scrolledpanel import ScrolledPanel 
    3131from math import fabs 
     32from sans.perspectives.calculator import calculator_widgets as widget    
     33 
    3234_BOX_WIDTH = 100 
    3335_Q_DEFAULT = 0.0 
     
    13901392            raise  
    13911393         
    1392 class ResolutionWindow(wx.MDIChildFrame): 
     1394class ResolutionWindow(widget.CHILD_FRAME): 
    13931395    """ 
    13941396    Resolution Window 
     
    14061408        kwds['title'] = title 
    14071409        kwds['size'] = size 
    1408         wx.MDIChildFrame.__init__(self, parent=parent, *args, **kwds) 
     1410        widget.CHILD_FRAME.__init__(self, parent=parent, *args, **kwds) 
    14091411        self.parent = parent 
    14101412        self.manager = manager 
Note: See TracChangeset for help on using the changeset viewer.