Changeset 0979dfb in sasview for src/sas/qtgui/Perspectives/Invariant/InvariantPerspective.py
- Timestamp:
- Mar 22, 2017 8:14:18 AM (8 years ago)
- Branches:
- 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
- Children:
- 29eb947
- Parents:
- 351b53e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Invariant/InvariantPerspective.py
r83d6249 r0979dfb 40 40 # for the gui and providing an interface to the data model. 41 41 name = "Invariant" # For displaying in the combo box 42 def __init__(self, manager=None, parent=None): 43 super(InvariantWindow, self).__init__(parent) 42 #def __init__(self, manager=None, parent=None): 43 def __init__(self, parent=None): 44 #super(InvariantWindow, self).__init__(parent) 45 super(InvariantWindow, self).__init__() 44 46 self.setupUi(self) 45 47 … … 55 57 self._power_low = 4 56 58 57 self._manager = manager 59 self._manager = parent 60 #self._manager = manager 58 61 self._reactor = self._manager.reactor() 59 62 self._model_item = QtGui.QStandardItem()
Note: See TracChangeset
for help on using the changeset viewer.