Changeset 509af3d in sasview
- Timestamp:
- Mar 26, 2010 12:57:34 PM (15 years ago)
- Branches:
- master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- c6036f5
- Parents:
- 2f189dc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/data_loader.py
rb91c736 r509af3d 174 174 data_name = new_plot.name 175 175 if existing_panel.__class__.__name__ == "ModelPanel1D"\ 176 and existing_panel.group_id is not None: 176 and existing_panel.group_id is not None and \ 177 not hasattr(new_plot, 'data'): 177 178 if append_data_to_existing_panel(panel_name, data_name): 178 179 #add this plot the an existing panel … … 230 231 data_name = new_plot.name 231 232 if existing_panel.__class__.__name__ == "ModelPanel1D"\ 232 and existing_panel.group_id is not None: 233 and existing_panel.group_id is not None and \ 234 not hasattr(new_plot, 'data'): 233 235 if append_data_to_existing_panel(panel_name, data_name): 234 236 #add this plot the an existing panel
Note: See TracChangeset
for help on using the changeset viewer.