Changeset 1e0296b in sasview


Ignore:
Timestamp:
Oct 19, 2018 6:07:06 AM (5 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
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:
d7d55c7
Parents:
9a42ea1
git-author:
Piotr Rozyczko <piotr.rozyczko@…> (10/19/18 06:04:32)
git-committer:
Piotr Rozyczko <piotr.rozyczko@…> (10/19/18 06:07:06)
Message:

fitpage copy/paste fix for error column counter

(cherry picked from commit b8dccb8c597afe425c67825bd81c0247a9faa1e3)

File:
1 edited

Legend:

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

    r9a42ea1 r1e0296b  
    37693769            ioffset = 0 
    37703770            joffset = 0 
    3771             if len(param_dict[param_name])>3: 
     3771            if len(param_dict[param_name])>4: 
    37723772                # error values are not editable - no need to update 
    37733773                ioffset = 1 
     
    38143814            ioffset = 0 
    38153815            joffset = 0 
    3816             if len(param_dict[param_name])>3: 
     3816            if len(param_dict[param_name])>7: 
    38173817                ioffset = 1 
    38183818            if self.has_poly_error_column: 
     
    38623862            ioffset = 0 
    38633863            joffset = 0 
    3864             if len(param_dict[param_name])>3: 
     3864            if len(param_dict[param_name])>4: 
    38653865                ioffset = 1 
    38663866            if self.has_magnet_error_column: 
Note: See TracChangeset for help on using the changeset viewer.