Changeset fbfed45 in sasview for src/sas/sasgui/perspectives/fitting
- Timestamp:
- Dec 1, 2016 6:11:56 AM (8 years ago)
- Children:
- bacc04b
- Parents:
- 6b59bb3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/fitting/gpu_options.py
r6b59bb3 rfbfed45 37 37 for index, clopt in enumerate(clinfo): 38 38 button = wx.RadioButton(self.panel1, -1, label=clopt, name=clopt) 39 button.SetValue(0) 39 40 if clopt != "No OpenCL": 40 41 self.option_button[clopt] = str(index) 41 42 else: 42 43 self.option_button[clopt] = "None" 43 self.Bind(wx.EVT_LEFT_DOWN, self.on_radio_default, id=button.GetId())44 44 self.Bind(wx.EVT_RADIOBUTTON, self.on_radio, id=button.GetId()) 45 45 boxsizer.Add(button, 0, 0)
Note: See TracChangeset
for help on using the changeset viewer.