Changeset 62c6dc0 in sasview for src


Ignore:
Timestamp:
Sep 29, 2018 5:38:05 AM (6 years ago)
Author:
piotr
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:
5ffb7a7, 085ee014
Parents:
7385fec
Message:

Disable model update on showing read-only values. SASVIEW-1092

File:
1 edited

Legend:

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

    rd4216ac r62c6dc0  
    30693069            # no info about limits 
    30703070            pass 
     3071        # don't update the kernel here - this data is display only 
     3072        self._model_model.blockSignals(True) 
    30713073        item3.setText(str(shell_min)) 
    30723074        item4.setText(str(shell_max)) 
     3075        self._model_model.blockSignals(False) 
    30733076 
    30743077        # Respond to index change 
Note: See TracChangeset for help on using the changeset viewer.