Changeset f552ff3 in sasview for src/sas/perspectives
- Timestamp:
- Mar 24, 2015 10:42:33 PM (10 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:
- f71700b
- Parents:
- dea2f6e (diff), 9f7fbd9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- src/sas/perspectives/pr
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/perspectives/pr/explore_dialog.py
r8b21fa7 r0efb04d 257 257 or when a new computation is finished. 258 258 """ 259 self.npts_ctl.SetFocus() 259 260 # Get the output type selection 260 261 output_type = self.output_box.GetString(self.output_box.GetSelection()) … … 329 330 # Ouput selection box 330 331 selection_msg = wx.StaticText(self, -1, "Select a dependent variable:") 331 self.output_box = wx.ComboBox(self, -1 )332 self.output_box = wx.ComboBox(self, -1, style=wx.CB_READONLY) 332 333 for item in self.results.outputs.keys(): 333 334 self.output_box.Append(item, "") 334 335 self.output_box.SetStringSelection(DEFAULT_OUTPUT) 336 self.output_box.SetEditable(False) 335 337 336 338 output_sizer = wx.GridBagSizer(5, 5) -
src/sas/perspectives/pr/inversion_panel.py
rdea2f6e rf552ff3 703 703 try: 704 704 alpha = self.alpha_estimate_ctl.GetLabel() 705 self.alpha_ctl.SetValue(float(alpha)) 705 # Check that we have a number 706 float(alpha) 707 self.alpha_ctl.SetValue(alpha) 708 except ValueError: 709 logging.error("InversionControl._on_accept_alpha got a value that was not a number: %s" % alpha ) 706 710 except: 707 711 # No estimate or bad estimate, either do nothing … … 715 719 try: 716 720 nterms = self.nterms_estimate_ctl.GetLabel() 717 self.nfunc_ctl.SetValue(float(nterms)) 721 # Check that we have a number 722 float(nterms) 723 self.nfunc_ctl.SetValue(nterms) 724 except ValueError: 725 logging.error("InversionControl._on_accept_nterms got a value that was not a number: %s" % nterms ) 718 726 except: 719 727 # No estimate or bad estimate, either do nothing
Note: See TracChangeset
for help on using the changeset viewer.