Changeset c3c050e in sasview for fittingview/src
- Timestamp:
- Apr 2, 2012 4:53:09 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:
- 93f0a862
- Parents:
- 66798ce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fittingview/src/sans/perspectives/fitting/basepage.py
rd40038e rc3c050e 2942 2942 frame.rhelp.ScrollToAnchor(name) 2943 2943 else: 2944 msg= "Model does not contains an available description " 2945 msg +="Please try searching in the Help window" 2946 wx.PostEvent(self.parent.parent, StatusEvent(status = msg )) 2944 #msg= "Sorry, no information is available for this model" 2945 #wx.PostEvent(self.parent.parent, StatusEvent(status = msg )) 2947 2946 if self.model != None: 2948 2947 frame.Destroy() 2949 2948 msg = 'Model description:\n' 2950 msg += self.model.description + '\n' 2949 if str(self.model.description).rstrip().lstrip() == '': 2950 msg += "Sorry, no information is available for this model.\n" 2951 else: 2952 msg += self.model.description + '\n' 2951 2953 info = "Info" 2952 2954 wx.MessageBox(msg, info)
Note: See TracChangeset
for help on using the changeset viewer.