Changeset f199764 in sasview
- Timestamp:
- Jun 22, 2011 7:03:46 PM (13 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:
- 4ccbc67
- Parents:
- 7d9e7a9
- Location:
- prview/perspectives/pr
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
prview/perspectives/pr/inversion_panel.py
r7d9e7a9 rf199764 515 515 explanation += "term. The suggested value is the value above which the" 516 516 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)) 518 518 boxsizer2.Add(label_explain, wx.LEFT|wx.BOTTOM, 5) 519 519 … … 925 925 wx.PostEvent(self._manager.parent, StatusEvent(status=message)) 926 926 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) 934 933 else: 935 934 message = "The P(r) form contains invalid values: " -
prview/perspectives/pr/pr.py
rb1a9e8b rf199764 1003 1003 if not pr==None: 1004 1004 self.pr = pr 1005 self.perform_estimate()1005 wx.CallAfter(self.perform_estimate) 1006 1006 except: 1007 1007 wx.PostEvent(self.parent, StatusEvent(status=sys.exc_value)) … … 1107 1107 if not pr is None: 1108 1108 self.pr = pr 1109 self.perform_estimate()1109 wx.CallAfter(self.perform_estimate) 1110 1110 except: 1111 1111 wx.PostEvent(self.parent, StatusEvent(status=sys.exc_value))
Note: See TracChangeset
for help on using the changeset viewer.