Ignore:
File:
1 edited

Legend:

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

    r20f4857 r085409e3  
    6565        self.communicate.copyFitParamsSignal.connect(self.onParamCopy) 
    6666        self.communicate.pasteFitParamsSignal.connect(self.onParamPaste) 
    67         self.communicate.copyExcelFitParamsSignal.connect(self.onExcelCopy) 
    68         self.communicate.copyLatexFitParamsSignal.connect(self.onLatexCopy) 
    69  
    7067 
    7168        # Perspective window not allowed to close by default 
     
    106103    def onParamPaste(self): 
    107104        self.currentTab.onParameterPaste() 
    108  
    109     def onExcelCopy(self): 
    110         self.currentTab.onParameterCopy("Excel") 
    111  
    112     def onLatexCopy(self): 
    113         self.currentTab.onParameterCopy("Latex") 
    114105 
    115106    def closeEvent(self, event): 
     
    316307            page_name = "Page%s"%tab_object.tab_id 
    317308            if any([page_name in tab for tab in tabs_for_fitting]): 
    318                 tab_object.disableInteractiveElements() 
     309                tab_object.setFittingStarted() 
    319310 
    320311        pass 
     
    333324            page_name = "Page%s"%tab_object.tab_id 
    334325            if any([page_name in tab for tab in tabs_for_fitting]): 
    335                 tab_object.enableInteractiveElements() 
     326                tab_object.setFittingStopped() 
    336327 
    337328        pass 
Note: See TracChangeset for help on using the changeset viewer.