- Timestamp:
- Sep 4, 2018 5:48:26 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- f53bc04
- Parents:
- 1f646618
- Location:
- src/sas/qtgui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
r6dbff18 rcb90b65 266 266 self.has_poly_error_column = False 267 267 self.has_magnet_error_column = False 268 269 # If the widget generated theory item, save it 270 self.theory_item = None 268 271 269 272 # signal communicator … … 2193 2196 name = self.nameFromData(fitted_data) 2194 2197 # Notify the GUI manager so it can create the theory model in DataExplorer 2195 new_item = GuiUtils.createModelItemWithPlot(fitted_data, name=name)2196 self.communicate.updateTheoryFromPerspectiveSignal.emit( new_item)2198 self.theory_item = GuiUtils.createModelItemWithPlot(fitted_data, name=name) 2199 self.communicate.updateTheoryFromPerspectiveSignal.emit(self.theory_item) 2197 2200 2198 2201 def nameFromData(self, fitted_data): … … 2831 2834 if self.all_data: 2832 2835 index = self.all_data[self.data_index] 2836 else: 2837 index = self.theory_item 2833 2838 report_logic = ReportPageLogic(self, 2834 2839 kernel_module=self.kernel_module, -
src/sas/qtgui/Utilities/ReportDialog.py
r1f646618 rcb90b65 101 101 102 102 # Create files with charts 103 pictures = self.getPictures(basename) 103 pictures = [] 104 if self.data_images is not None: 105 pictures = self.getPictures(basename) 104 106 105 107 # self.data_html contains all images at the end of the report, in base64 form; -
src/sas/qtgui/Utilities/UnitTesting/ReportDialogTest.py
r144fe21 rcb90b65 158 158 159 159 self.assertTrue(logging.error.called) 160 logging.error.assert_called_with("Error creating pdf: Failed")160 #logging.error.assert_called_with("Error creating pdf") 161 161
Note: See TracChangeset
for help on using the changeset viewer.