Changeset a2cc8b97 in sasview
- Timestamp:
- Aug 9, 2018 7:05:47 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 3ae9179, 685e0e3
- Parents:
- eb0d26c
- git-author:
- Piotr Rozyczko <rozyczko@…> (08/09/18 07:05:04)
- git-committer:
- Piotr Rozyczko <rozyczko@…> (08/09/18 07:05:47)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
rb259485 ra2cc8b97 1326 1326 Send the finish message from calculate threads to main thread 1327 1327 """ 1328 if result is None: 1329 result = tuple() 1328 1330 self.batchFittingFinishedSignal.emit(result) 1329 1331 … … 1335 1337 self.setFittingStopped() 1336 1338 1337 if result is None:1339 if len(result) == 0: 1338 1340 msg = "Fitting failed." 1339 1341 self.communicate.statusBarUpdateSignal.emit(msg) … … 1395 1397 Send the finish message from calculate threads to main thread 1396 1398 """ 1399 if result is None: 1400 result = tuple() 1397 1401 self.fittingFinishedSignal.emit(result) 1398 1402 … … 1405 1409 self.setFittingStopped() 1406 1410 1407 if result is None:1411 if len(result) == 0: 1408 1412 msg = "Fitting failed." 1409 1413 self.communicate.statusBarUpdateSignal.emit(msg)
Note: See TracChangeset
for help on using the changeset viewer.