Ignore:
Timestamp:
May 8, 2018 4:23:59 AM (6 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:
acd9c311, bac81f4, fca1f50
Parents:
42787fb
Message:

Minor stability fixes for some calculators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/MainWindow/GuiManager.py

    raed0532 rfa05c6c1  
    602602        """ 
    603603        """ 
    604         #self.DVCalculator.show() 
    605604        self.KIESSIGCalculator.show() 
    606605 
     
    613612        """ 
    614613        """ 
    615         self.ResolutionCalculator.show() 
     614        try: 
     615            self.ResolutionCalculator.show() 
     616        except Exception as ex: 
     617            logging.error(str(ex)) 
     618            return 
    616619 
    617620    def actionGeneric_Scattering_Calculator(self): 
    618621        """ 
    619622        """ 
    620         self.GENSASCalculator.show() 
     623        try: 
     624            self.GENSASCalculator.show() 
     625        except Exception as ex: 
     626            logging.error(str(ex)) 
     627            return 
    621628 
    622629    def actionPython_Shell_Editor(self): 
Note: See TracChangeset for help on using the changeset viewer.