Changes in / [bc9a0e1:b7c9f7d] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/guiframe/local_perspectives/plotting/slicerpanel.py
r79492222 r27ab091 17 17 #TODO: show units 18 18 #TODO: order parameters properly 19 19 ## Internal name for the AUI manager 20 20 window_name = "Slicer panel" 21 21 ## Title to appear on top of the window … … 76 76 flag=wx.LEFT|wx.ALIGN_CENTER_VERTICAL, border=15) 77 77 else: 78 title = wx.StaticText(self, -1, "Slicer Parameters", 78 title_text = str(type) + "Parameters" 79 title = wx.StaticText(self, -1, title_text, 79 80 style=wx.ALIGN_LEFT) 80 81 self.bck.Add(title, (0, 0), (1, 2), … … 125 126 def onSetFocus(self, evt): 126 127 """ 127 High tlight the textcrtl128 Highlight the txtcrtl 128 129 """ 130 evt.Skip() 129 131 # Get a handle to the TextCtrl 130 132 widget = evt.GetEventObject() … … 147 149 """ 148 150 Parameters have changed 149 """ 151 """ 152 evt.Skip() 150 153 params = {} 151 154 has_error = False
Note: See TracChangeset
for help on using the changeset viewer.