Changeset b8dccb8 in sasview


Ignore:
Timestamp:
Oct 19, 2018 6:04:32 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:
a3c59503
Parents:
2eeda93
Message:

fitpage copy/paste fix for error column counter

File:
1 edited

Legend:

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

    r2eeda93 rb8dccb8  
    37723772            ioffset = 0 
    37733773            joffset = 0 
    3774             if len(param_dict[param_name])>3: 
     3774            if len(param_dict[param_name])>4: 
    37753775                # error values are not editable - no need to update 
    37763776                ioffset = 1 
     
    38173817            ioffset = 0 
    38183818            joffset = 0 
    3819             if len(param_dict[param_name])>3: 
     3819            if len(param_dict[param_name])>7: 
    38203820                ioffset = 1 
    38213821            if self.has_poly_error_column: 
     
    38653865            ioffset = 0 
    38663866            joffset = 0 
    3867             if len(param_dict[param_name])>3: 
     3867            if len(param_dict[param_name])>4: 
    38683868                ioffset = 1 
    38693869            if self.has_magnet_error_column: 
Note: See TracChangeset for help on using the changeset viewer.