Changeset 99f8760 in sasview for src/sas/qtgui/MainWindow
- Timestamp:
- Dec 4, 2018 7:37:38 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_sync_sascalc
- Children:
- 0989bad
- Parents:
- d9e7792
- Location:
- src/sas/qtgui/MainWindow
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/DataExplorer.py
rd9e7792 r99f8760 354 354 properties['checked'] = is_checked 355 355 other_datas = [] 356 # no need to save other_datas - things will be refit on read357 #other_datas = GuiUtils.plotsFromFilename(filename, model)356 # save underlying theories 357 other_datas = GuiUtils.plotsFromFilename(filename, model) 358 358 # skip the main plot 359 #other_datas = list(other_datas.values())[1:]359 other_datas = list(other_datas.values())[1:] 360 360 all_data[data.id] = [data, properties, other_datas] 361 361 return all_data … … 457 457 if key=='is_batch': 458 458 self.chkBatch.setChecked(True if value=='True' else False) 459 if 'batch_grid' not in all_data: 460 continue 461 grid_pages = all_data['batch_grid'] 462 for grid_name, grid_page in grid_pages.items(): 463 grid_page.append(grid_name) 464 self.parent.showBatchOutput(grid_page) 459 465 continue 460 466 if 'cs_tab' in key: -
src/sas/qtgui/MainWindow/GuiManager.py
rd9e7792 r99f8760 588 588 if id=='is_batch': 589 589 analysis['is_batch'] = data 590 analysis['batch_grid'] = self.grid_window.data_dict 590 591 continue 591 592 data_content = {"fit_data":data} … … 710 711 """ 711 712 self.grid_subwindow.setVisible(True) 713 self.grid_subwindow.raise_() 712 714 if output_data: 713 715 self.grid_window.addFitResults(output_data)
Note: See TracChangeset
for help on using the changeset viewer.