Changeset 709cd83 in sasview for sansguiframe/src/sans/guiframe
- Timestamp:
- Jun 26, 2012 3:28:20 PM (12 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:
- 306219c
- Parents:
- 743f480
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/data_manager.py
r4752c31 r709cd83 216 216 new_theory.id = time.time() 217 217 new_theory.is_data = True 218 new_theory.name += '_@' + \ 219 str(new_theory.id)[7:-1].replace('.', '') 220 new_theory.title = new_theory.name 221 new_theory.label = new_theory.name 218 222 selected_theory[new_theory.id] = DataState(new_theory) 219 self.stored_data[new_theory.id] = selected_theory[new_theory.id] 223 self.stored_data[new_theory.id] = \ 224 selected_theory[new_theory.id] 220 225 221 226 return selected_theory
Note: See TracChangeset
for help on using the changeset viewer.