Changes in src/sas/qtgui/Utilities/ReportDialog.py [cb90b65:ce30949] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Utilities/ReportDialog.py
rcb90b65 rce30949 73 73 # Use a sensible filename default 74 74 default_name = os.path.join(location, 'fit_report.pdf') 75 76 75 kwargs = { 77 76 'parent' : self, 78 77 'caption' : 'Save Report', 79 # don't use 'directory' in order to remember the previous user choice 80 #'directory': default_name, 78 'directory': default_name, 81 79 'filter' : 'PDF file (*.pdf);;HTML file (*.html);;Text file (*.txt)', 82 80 'options' : QtWidgets.QFileDialog.DontUseNativeDialog} … … 101 99 102 100 # Create files with charts 103 pictures = [] 104 if self.data_images is not None: 105 pictures = self.getPictures(basename) 101 pictures = self.getPictures(basename) 106 102 107 103 # self.data_html contains all images at the end of the report, in base64 form;
Note: See TracChangeset
for help on using the changeset viewer.