Ignore:
File:
1 edited

Legend:

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

    rbac3988 rd85c194  
    5757    ## Title to appear on top of the window 
    5858    window_caption = "Fit Page " 
    59  
    6059    # These two buttons have specific IDs since they seem to be created more 
    6160    # frequently than they need to.  In particular, set_dispers_sizer() is 
     
    12821281            else: 
    12831282                self.model_view.SetLabel("1D Mode") 
    1284  
     1283         
    12851284        ## set the select all check box to the a given state 
    12861285        self.cb1.SetValue(state.cb1) 
     
    13801379            if disp.__class__.__name__ == 'str': 
    13811380                disp_model = None 
    1382                 com_str = "from sasmodels.weights " 
     1381                com_str = "from sas.models.dispersion_models " 
    13831382                com_str += "import %s as disp_func \ndisp_model = disp_func()" 
    13841383                exec com_str % disp 
     
    19041903                        m_list.append(self.model_dict[model]) 
    19051904                    #else: 
    1906                     #    msg = "This model is disabled by Category Manager." 
     1905                    #    msg = "This model is disabled by Category Manager."  
    19071906                    #    wx.PostEvent(self.parent.parent, 
    19081907                    #                 StatusEvent(status=msg, info="error")) 
     
    19451944            name = model.__class__.__name__ 
    19461945            if models.__name__ != "NoStructure": 
    1947                 name = model.name 
     1946                if hasattr(model, "name"): 
     1947                    name = model.name 
    19481948                mlist.append((name, models)) 
    19491949 
     
    24142414        self._draw_model() 
    24152415        ## Need to use FitInside again here to replace the next four lines. 
    2416         ## Otherwised polydispersity off does not resize the scrollwindow. 
     2416        ## Otherwised polydispersity off does not resize the scrollwindow.  
    24172417        ## PDB Nov 28, 2015 
    24182418        self.FitInside() 
     
    24592459        self.weights = {} 
    24602460 
    2461         #from sas.models.dispersion_models import GaussianDispersion 
    2462         from sasmodels.weights import GaussianDispersion 
     2461        from sas.models.dispersion_models import GaussianDispersion 
    24632462        if len(self.disp_cb_dict) == 0: 
    24642463            self.save_current_state() 
     
    29672966        self.Show(False) 
    29682967        self.set_model_param_sizer(self.model) 
    2969         #self._set_sizer_dispersion() 
     2968        #self._set_sizer_dispersion()  
    29702969        self.state.magnetic_on = self.magnetic_on 
    29712970        self.SetupScrolling() 
     
    35883587        cat_tip = "Modify model categories \n" 
    35893588        cat_tip += "(also accessible from the menu bar)." 
    3590         show_cat_button.SetToolTip( wx.ToolTip(cat_tip) ) 
     3589        show_cat_button.SetToolTip(wx.ToolTip(cat_tip)) 
    35913590        show_cat_button.Bind(wx.EVT_BUTTON, self._on_modify_cat) 
    35923591        sizer_cat_box.Add(self.categorybox, 1, wx.RIGHT, 3) 
    3593         sizer_cat_box.Add((10,10)) 
     3592        sizer_cat_box.Add((10, 10)) 
    35943593        sizer_cat_box.Add(show_cat_button) 
    35953594        #self.shape_rbutton.SetValue(True) 
     
    35983597        #sizer_radiobutton.Add(self.shape_rbutton) 
    35993598        #sizer_radiobutton.Add(self.shape_indep_rbutton) 
    3600         sizer_radiobutton.Add((5,5)) 
     3599        sizer_radiobutton.Add((5, 5)) 
    36013600        sizer_radiobutton.Add(self.model_view, 1, wx.RIGHT, 5) 
    36023601        #sizer_radiobutton.Add(self.plugin_rbutton) 
     
    38143813        event.Skip() 
    38153814        #pass 
     3815 
Note: See TracChangeset for help on using the changeset viewer.