Changeset 45ed4dad in sasview
- Timestamp:
- Apr 13, 2009 9:41:58 AM (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:
- 1b70098
- Parents:
- af76bd9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/perspectives/fitting/basepage.py
rfa58441 r45ed4dad 63 63 ## Q range 64 64 self.qmin_x= 0.001 65 self.qmax_x= 0.1 65 self.qmax_x= 0.13 66 66 self.num_points= 100 67 67 ## Create memento to save the current state … … 1242 1242 """ 1243 1243 self.sizer6.Clear(True) 1244 box_description= wx.StaticBox(self, -1,"Save Options")1244 box_description= wx.StaticBox(self, -1,"Save Status") 1245 1245 boxsizer1 = wx.StaticBoxSizer(box_description, wx.VERTICAL) 1246 1246 sizer_save = wx.BoxSizer(wx.HORIZONTAL) 1247 1247 1248 self.btSave_title = wx.StaticText(self, -1, 'Save the current panel status') 1248 1249 self.btSave = wx.Button(self,wx.NewId(),'Save') 1249 1250 self.btSave.Bind(wx.EVT_BUTTON, self.onSave,id= self.btSave.GetId()) 1250 self.btSave.SetToolTipString("Save current panel state") 1251 1252 sizer_save.Add((20,20),0, wx.LEFT|wx.RIGHT|wx.EXPAND,120) 1251 self.btSave.SetToolTipString("Save current panel status") 1252 1253 sizer_save.Add(self.btSave_title) 1254 sizer_save.Add((20,20),0, wx.LEFT|wx.RIGHT|wx.EXPAND,45) 1255 1253 1256 sizer_save.Add(self.btSave) 1254 1257
Note: See TracChangeset
for help on using the changeset viewer.