Ignore:
Timestamp:
Oct 8, 2016 2:34:03 PM (8 years ago)
Author:
jhbakker
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, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
51a4d78
Parents:
6df015de
Message:

Data1D class changed to include SESANS Data format

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/fitting/fitpage.py

    r6df015de r7988501  
    9898    def onTrafo(self, event): 
    9999        """ 
    100         On Weighting radio button event, sets the weightbt_string 
     100        On Trafo radio button event, sets the Trafobt_string 
    101101        """ 
    102102        self.Trafobt_string = event.GetEventObject().GetLabelText() 
     
    120120        self.no_transform = wx.RadioButton(self, wx.ID_ANY, 
    121121                                                  'None', style=wx.RB_GROUP) 
    122         self.Bind(wx.EVT_RADIOBUTTON, self.onTrafo, 
    123                           id=self.no_transform.GetId()) 
     122 
     123        #self.Bind(wx.EVT_RADIOBUTTON, self.onTrafo, 
     124         #                 id=self.no_transform.GetId()) 
    124125        self.hankel = wx.RadioButton(self, wx.ID_ANY, 
    125126                                                  'Hankel') 
    126         self.Bind(wx.EVT_RADIOBUTTON, self.onTrafo, 
    127                           id=self.hankel.GetId()) 
     127        #self.Bind(wx.EVT_RADIOBUTTON, self.onTrafo, 
     128        #                  id=self.hankel.GetId()) 
    128129        self.cosine = wx.RadioButton(self, wx.ID_ANY, 
    129130                                                  'Cosine') 
    130         self.Bind(wx.EVT_RADIOBUTTON, self.onTrafo, 
    131                           id=self.cosine.GetId()) 
     131        #self.Bind(wx.EVT_RADIOBUTTON, self.onTrafo, 
     132         #                 id=self.cosine.GetId()) 
    132133 
    133134        #Not sure about this (only once though) 
Note: See TracChangeset for help on using the changeset viewer.