Changeset c9d6b9f in sasview for src/sas/qtgui/Perspectives/Fitting
- Timestamp:
- Mar 28, 2019 10:08:14 AM (6 years ago)
- Branches:
- ESS_GUI_bumps_abstraction
- Children:
- 46477950
- Parents:
- af893db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingOptions.py
raf893db rc9d6b9f 209 209 return self._fittingMethods 210 210 211 def __init__(self, parent=None , config=None):211 def __init__(self, parent=None): 212 212 super(FittingOptions, self).__init__(parent) 213 213 self.setupUi(self) … … 215 215 self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) 216 216 217 self.config = config218 219 217 # no reason to have this widget resizable 220 218 self.setFixedSize(self.minimumSizeHint()) 221 222 219 self.setWindowTitle("Fit Algorithms") 223 220 … … 320 317 # Select the requested widget 321 318 self.stackedWidget.setCurrentIndex(index_for_this_id) 322 323 319 self.updateWidgetFromConfig() 324 325 320 self.assignValidators() 326 321
Note: See TracChangeset
for help on using the changeset viewer.