Changeset 2da5759 in sasview


Ignore:
Timestamp:
May 9, 2017 7:18:50 AM (7 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:
672b8ab
Parents:
f7f5796
Message:

bugfix for inconsistent chi2 display

File:
1 edited

Legend:

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

    r2add354 r2da5759  
    606606            error_column.append(item) 
    607607 
     608        # block signals temporarily, so we don't end up 
     609        # updating charts with every single model change on the end of fitting 
     610        self._model_model.blockSignals(True) 
    608611        self.iterateOverModel(updateFittedValues) 
     612        self._model_model.blockSignals(False) 
    609613 
    610614        if self.has_error_column: 
Note: See TracChangeset for help on using the changeset viewer.