Changeset f199764 in sasview


Ignore:
Timestamp:
Jun 22, 2011 7:03:46 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:
4ccbc67
Parents:
7d9e7a9
Message:

small fix in parameter sizer size

Location:
prview/perspectives/pr
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • prview/perspectives/pr/inversion_panel.py

    r7d9e7a9 rf199764  
    515515        explanation += "term. The suggested value is the value above which the" 
    516516        explanation += " output P(r) will have only one peak." 
    517         label_explain = wx.StaticText(self, -1, explanation, size=(280,120)) 
     517        label_explain = wx.StaticText(self, -1, explanation, size=(280,90)) 
    518518        boxsizer2.Add(label_explain,  wx.LEFT|wx.BOTTOM, 5) 
    519519         
     
    925925                wx.PostEvent(self._manager.parent, StatusEvent(status=message)) 
    926926            else: 
    927                 wx.CallAfter(self._manager.setup_plot_inversion, alpha=alpha,  
    928                                                     nfunc=nfunc,  
    929                                                     d_max=dmax, 
    930                                                     q_min=qmin, q_max=qmax, 
    931                                                     bck=has_bck, 
    932                                                     height=height, 
    933                                                     width=width) 
     927                self._manager.setup_plot_inversion(alpha=alpha, nfunc=nfunc,  
     928                                                  d_max=dmax, 
     929                                                  q_min=qmin, q_max=qmax, 
     930                                                  bck=has_bck, 
     931                                                  height=height, 
     932                                                  width=width) 
    934933        else: 
    935934            message = "The P(r) form contains invalid values: " 
  • prview/perspectives/pr/pr.py

    rb1a9e8b rf199764  
    10031003            if not pr==None: 
    10041004                self.pr = pr 
    1005                 self.perform_estimate() 
     1005                wx.CallAfter(self.perform_estimate) 
    10061006        except: 
    10071007            wx.PostEvent(self.parent, StatusEvent(status=sys.exc_value))             
     
    11071107            if not pr is None: 
    11081108                self.pr = pr 
    1109                 self.perform_estimate() 
     1109                wx.CallAfter(self.perform_estimate) 
    11101110        except: 
    11111111            wx.PostEvent(self.parent, StatusEvent(status=sys.exc_value)) 
Note: See TracChangeset for help on using the changeset viewer.