Changeset 99f8760 in sasview for src/sas/qtgui/MainWindow/DataExplorer.py
- 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
- File:
-
- 1 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:
Note: See TracChangeset
for help on using the changeset viewer.