Changeset 85b3971 in sasview for sansview/perspectives/fitting/fitpage.py
- Timestamp:
- Dec 18, 2009 11:07:28 PM (15 years ago)
- 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:
- e051c8d
- Parents:
- 6e74ee4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/perspectives/fitting/fitpage.py
r12eac73 r85b3971 11 11 12 12 from sans.guicomm.events import StatusEvent 13 from sans.guiframe.utils import format_number,check_float ,check_value13 from sans.guiframe.utils import format_number,check_float 14 14 15 15 ## event to post model to fit to fitting plugins … … 571 571 #make sure all parameter values are updated. 572 572 573 flag = self._update_paramv_on_fit() #check_value( self.qmin, self.qmax)573 flag = self._update_paramv_on_fit() 574 574 575 575 if not flag: … … 745 745 746 746 # If qmin and qmax have been modified, update qmin and qmax 747 if check_value( self.qmin, self.qmax):747 if self._validate_qrange( self.qmin, self.qmax): 748 748 tempmin = float(self.qmin.GetValue()) 749 749 if tempmin != self.qmin_x: … … 1138 1138 to the tcChi txtcrl 1139 1139 """ 1140 flag = check_value( self.qmin, self.qmax)1140 flag = self._validate_qrange( self.qmin, self.qmax) 1141 1141 if flag== True: 1142 1142 try:
Note: See TracChangeset
for help on using the changeset viewer.