Changeset 9d130f3 in sasview
- Timestamp:
- Sep 25, 2018 3:54:04 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 6f6e8e4
- Parents:
- 91f4884
- git-author:
- Piotr Rozyczko <piotr.rozyczko@…> (09/25/18 03:51:38)
- git-committer:
- Piotr Rozyczko <piotr.rozyczko@…> (09/25/18 03:54:04)
- Location:
- src/sas/qtgui/Perspectives/Fitting
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingPerspective.py
rdee9e5f r9d130f3 298 298 page_name = "Page%s"%tab_object.tab_id 299 299 if any([page_name in tab for tab in tabs_for_fitting]): 300 tab_object. setFittingStarted()300 tab_object.disableInteractiveElements() 301 301 302 302 pass … … 315 315 page_name = "Page%s"%tab_object.tab_id 316 316 if any([page_name in tab for tab in tabs_for_fitting]): 317 tab_object. setFittingStopped()317 tab_object.enableInteractiveElements() 318 318 319 319 pass -
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
r91f4884 r9d130f3 1538 1538 1539 1539 elapsed = result[1] 1540 if self.calc_fit ._interrupting:1540 if self.calc_fit is not None and self.calc_fit._interrupting: 1541 1541 msg = "Fitting cancelled by user after: %s s." % GuiUtils.formatNumber(elapsed) 1542 1542 logger.warning("\n"+msg+"\n")
Note: See TracChangeset
for help on using the changeset viewer.