Changeset b38c8c8 in sasview


Ignore:
Timestamp:
Mar 25, 2019 9:05:22 AM (5 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl
Children:
4c11b2a, d4c9242
Parents:
17e6a2b
Message:

Allow for constrain copy/paste after formatting of the field changed.
SASVIEW-1278

File:
1 edited

Legend:

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

    rcf9f39e rb38c8c8  
    729729    output_string = "sasview_parameter_values:" 
    730730    for parameter in parameters: 
     731        # recast tuples into strings 
     732        parameter = [str(p) for p in parameter] 
    731733        output_string += ",".join([p for p in parameter if p is not None]) 
    732734        output_string += ":" 
Note: See TracChangeset for help on using the changeset viewer.