Ignore:
Timestamp:
Jan 30, 2018 8:00:39 AM (7 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
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:
5e66738
Parents:
63319b0
Message:

unit test updates

File:
1 edited

Legend:

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

    r17968c3 rda9a0722  
    357357        Determines if the tab can be imported and included in the widget 
    358358        """ 
     359        if not isinstance(tab, str): return False 
    359360        if not self.currentType in tab: return False 
    360361        object = ObjectLibrary.getObject(tab) 
     
    396397        menu.addSeparator() 
    397398 
    398         #menu.addAction(self.actionRemoveConstraint) 
    399399        if num_rows >= 2: 
    400400            menu.addAction(self.actionMutualMultiConstrain) 
    401401 
    402402        # Define the callbacks 
    403         #self.actionConstrain.triggered.connect(self.addSimpleConstraint) 
    404         #self.actionRemoveConstraint.triggered.connect(self.deleteConstraint) 
    405403        self.actionMutualMultiConstrain.triggered.connect(self.showMultiConstraint) 
    406404        self.actionSelect.triggered.connect(self.selectModels) 
     
    443441 
    444442        # Define the callbacks 
    445         #self.actionConstrain.triggered.connect(self.addSimpleConstraint) 
    446443        self.actionRemoveConstraint.triggered.connect(self.deleteConstraint) 
    447         #self.actionMutualMultiConstrain.triggered.connect(self.showMultiConstraint) 
    448444        self.actionSelect.triggered.connect(self.selectConstraints) 
    449445        self.actionDeselect.triggered.connect(self.deselectConstraints) 
Note: See TracChangeset for help on using the changeset viewer.