Changeset 161713c in sasview for src/sas/qtgui/Plotter2D.py
- Timestamp:
- Feb 14, 2017 9:14:11 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:
- 4c7dd9f
- Parents:
- 7b8485f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotter2D.py
r7b8485f r161713c 136 136 self.actionDataInfo = self.contextMenu.addAction("&DataInfo") 137 137 self.actionDataInfo.triggered.connect( 138 functools.partial(self.onDataInfo, self.data))138 functools.partial(self.onDataInfo, self.data)) 139 139 140 140 self.actionSavePointsAsFile = self.contextMenu.addAction("&Save Points as a File") 141 141 self.actionSavePointsAsFile.triggered.connect( 142 functools.partial(self.onSavePoints, self.data))142 functools.partial(self.onSavePoints, self.data)) 143 143 self.contextMenu.addSeparator() 144 144 … … 225 225 self.param_model = self.slicer.model() 226 226 # Pass the model to the Slicer Parameters widget 227 self.slicer_widget = SlicerParameters(model=self.param_model) 227 self.slicer_widget = SlicerParameters(model=self.param_model, 228 validate_method=self.slicer.validate) 228 229 self.slicer_widget.close_signal.connect(slicer_closed) 229 230 # Add the plot to the workspace
Note: See TracChangeset
for help on using the changeset viewer.