Changes in / [98f6916:fa6a8d1] in sasview


Ignore:
Location:
src/sas
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/sas/dataloader/loader.py

    r5e326a6 r4749514  
    363363        :return: DataInfo object 
    364364        """ 
    365         print self.__registry.extensions 
    366365        return self.__registry.load(file, format) 
    367366     
  • src/sas/guiframe/local_perspectives/plotting/slicerpanel.py

    r79492222 r27ab091  
    1717    #TODO: show units 
    1818    #TODO: order parameters properly 
    19      ## Internal name for the AUI manager 
     19    ## Internal name for the AUI manager 
    2020    window_name = "Slicer panel" 
    2121    ## Title to appear on top of the window 
     
    7676                         flag=wx.LEFT|wx.ALIGN_CENTER_VERTICAL, border=15) 
    7777        else: 
    78             title = wx.StaticText(self, -1, "Slicer Parameters",  
     78            title_text = str(type) + "Parameters" 
     79            title = wx.StaticText(self, -1, title_text,  
    7980                                  style=wx.ALIGN_LEFT) 
    8081            self.bck.Add(title, (0, 0), (1, 2),  
     
    125126    def onSetFocus(self, evt): 
    126127        """ 
    127         Hightlight the textcrtl 
     128        Highlight the txtcrtl 
    128129        """ 
     130        evt.Skip() 
    129131        # Get a handle to the TextCtrl 
    130132        widget = evt.GetEventObject() 
     
    147149        """ 
    148150        Parameters have changed 
    149         """  
     151        """ 
     152        evt.Skip() 
    150153        params = {} 
    151154        has_error = False 
Note: See TracChangeset for help on using the changeset viewer.