Changeset fa05c6c1 in sasview for src/sas/qtgui/MainWindow/GuiManager.py
- Timestamp:
- May 8, 2018 4:23:59 AM (7 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/GuiManager.py
raed0532 rfa05c6c1 602 602 """ 603 603 """ 604 #self.DVCalculator.show()605 604 self.KIESSIGCalculator.show() 606 605 … … 613 612 """ 614 613 """ 615 self.ResolutionCalculator.show() 614 try: 615 self.ResolutionCalculator.show() 616 except Exception as ex: 617 logging.error(str(ex)) 618 return 616 619 617 620 def actionGeneric_Scattering_Calculator(self): 618 621 """ 619 622 """ 620 self.GENSASCalculator.show() 623 try: 624 self.GENSASCalculator.show() 625 except Exception as ex: 626 logging.error(str(ex)) 627 return 621 628 622 629 def actionPython_Shell_Editor(self):
Note: See TracChangeset
for help on using the changeset viewer.