- Timestamp:
- Apr 23, 2010 12:04:52 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:
- 2170dee2
- Parents:
- 0fff338f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/dataFitting.py
r901142f rf7a5c7e 163 163 self.ymin = data2d.ymin 164 164 self.ymax = data2d.ymax 165 self.zmin = data2d.zmin 166 self.zmax = data2d.zmax 165 if hasattr(data2d, "zmin"): 166 self.zmin = data2d.zmin 167 if hasattr(data2d, "zmax"): 168 self.zmax = data2d.zmax 167 169 168 170 self.xaxis(data2d._xaxis, data2d._xunit)
Note: See TracChangeset
for help on using the changeset viewer.