Changeset 27976fd0 in sasview for sansview/perspectives/fitting/modelpage.py
- Timestamp:
- Apr 21, 2009 7:07:20 PM (16 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:
- f99a6b1
- Parents:
- c09ac449
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/perspectives/fitting/modelpage.py
r6fdfc8f r27976fd0 66 66 67 67 else: 68 description=" "68 description="Model contains no description" 69 69 if self.model!=None: 70 70 description = self.model.description 71 71 if description.lstrip().rstrip() =="": 72 description="Model contains no description" 72 73 self.description = wx.StaticText( self,-1,str(description) ) 73 74 self.sizer_description.Add( self.description, 1, wx.EXPAND | wx.ALL, 10 ) … … 403 404 if frame.rhelp.HasAnchor(name): 404 405 frame.rhelp.ScrollToAnchor(name) 406 else: 407 msg= "Model does not contains an available description " 408 msg +="Please.Search in the Help window" 409 wx.PostEvent(self.parent.parent, StatusEvent(status = msg )) 410 405 411 406 412
Note: See TracChangeset
for help on using the changeset viewer.