Changeset c149fba in sasview for src


Ignore:
Timestamp:
Mar 26, 2019 10:36:09 AM (5 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl
Children:
0239237, dc3b34e
Parents:
50b33d0
Message:

Don't update old index, if there's no widget. SASVIEW-1035

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/FittingWidget.py

    rf5e2a10a rc149fba  
    31093109 
    31103110        self.iterateOverModel(updateFunctionCaption) 
    3111         self.orig_poly_index = combo_box.currentIndex() 
     3111        if combo_box is not None: 
     3112            self.orig_poly_index = combo_box.currentIndex() 
    31123113 
    31133114    def loadPolydispArray(self, row_index): 
Note: See TracChangeset for help on using the changeset viewer.