Ignore:
Timestamp:
Feb 22, 2017 5:51:53 AM (7 years ago)
Author:
wojciech
Branches:
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
Children:
84be77e
Parents:
0efe791
Message:

Unit tests added for selecting models, categories and structure factors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/FittingPerspective.py

    r0efe791 rb9c4c1e1  
    1717    Main window for selecting form and structure factor models 
    1818    """ 
    19     name = "Fitting" # For displaying in the combo box 
    2019    def __init__(self, manager=None, parent=None): 
    2120        """ 
     
    2625        """ 
    2726        super(FittingWindow, self).__init__() 
    28  
     27        self.setupUi(self) 
     28 
     29        self.setWindowTitle("Fitting") 
    2930        self._model_model = QtGui.QStandardItemModel() 
    3031        self._poly_model = QtGui.QStandardItemModel() 
    31         self.setupUi(self) 
    3232        self.tableView.setModel(self._model_model) 
    3333 
     
    5353        self.chkSmearing.setEnabled(False) 
    5454 
    55         #TODO: Can these be removed? 
    5655        self.lblMinRangeDef.setText("---") 
    5756        self.lblMaxRangeDef.setText("---") 
Note: See TracChangeset for help on using the changeset viewer.