Changeset 918fcb1 in sasview for sansview


Ignore:
Timestamp:
Dec 21, 2009 12:48:31 PM (15 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
adbb821
Parents:
66c488b
Message:

corrected mistake on last commit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/perspectives/fitting/basepage.py

    r85b3971 r918fcb1  
    15901590                             
    15911591                            param_min = float(item[5].GetValue()) 
    1592                             if not check_value(item[5],item[2]): 
     1592                            if not self._validate_qrange(item[5],item[2]): 
    15931593                                if numpy.isfinite(param_min): 
    15941594                                    item[2].SetValue(format_number(param_min)) 
     
    16071607                        try:                           
    16081608                            param_max = float(item[6].GetValue()) 
    1609                             if not check_value(item[2],item[6]): 
     1609                            if not self._validate_qrange(item[2],item[6]): 
    16101610                                if numpy.isfinite(param_max): 
    16111611                                    item[2].SetValue(format_number(param_max))   
Note: See TracChangeset for help on using the changeset viewer.