Changeset 06e7c26 in sasview for fittingview/src


Ignore:
Timestamp:
Dec 2, 2011 12:03:01 PM (13 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:
7a7dbf4
Parents:
fa4885f9
Message:

fixed combined/batch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fittingview/src/sans/perspectives/fitting/simfitpage.py

    rfa02d95 r06e7c26  
    156156            wx.PostEvent(self._manager.parent, StatusEvent(status=\ 
    157157                            "Fitting: %s"%msg, info="info")) 
    158         if self.show_constraint.GetValue(): 
     158        if not self.batch_on and self.show_constraint.GetValue(): 
    159159            if not self._set_constraint(): 
    160160                return 
     
    232232        if len(self.model_toFit)>=1: 
    233233            self._store_model() 
    234             if self.show_constraint.GetValue() and\ 
     234            if not self.batch_on and self.show_constraint.GetValue() and\ 
    235235                             len(self.constraints_list)==0: 
    236236                self._show_all_constraint()  
     
    734734        self.hide_constraint.SetValue(True) 
    735735        self.show_constraint.SetValue(False) 
     736        print "self.show_constraint", self.show_constraint 
    736737         
    737738        sizer_title.Add(wx.StaticText(self,-1," Model")) 
Note: See TracChangeset for help on using the changeset viewer.