Changes in src/sas/perspectives/fitting/hint_fitpage.py [2f4b430:6f16e25] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/perspectives/fitting/hint_fitpage.py
r2f4b430 r6f16e25 27 27 """ 28 28 name = "Hint" 29 box_description = wx.StaticBox(self, -1, name)29 box_description = wx.StaticBox(self, wx.ID_ANY, name) 30 30 boxsizer = wx.StaticBoxSizer(box_description, wx.VERTICAL) 31 31 msg = " How to link data to the control panel: \n \n" … … 33 33 msg += " Then Highlight and right click on the data plot. \n" 34 34 msg += " Finally, select 'Select data for fitting' in the pop-up menu. \n" 35 self.hint_txt = wx.StaticText(self, -1, msg, style=wx.ALIGN_LEFT)35 self.hint_txt = wx.StaticText(self, wx.ID_ANY, msg, style=wx.ALIGN_LEFT) 36 36 boxsizer.Add(self.hint_txt, wx.ALL | wx.EXPAND, 20) 37 37 self.vbox = wx.BoxSizer(wx.VERTICAL)
Note: See TracChangeset
for help on using the changeset viewer.