Changeset 05efe88 in sasview for fittingview/src/sans
- Timestamp:
- Sep 23, 2011 5:34:53 PM (13 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:
- 71fa9028
- Parents:
- 4c2c93f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fittingview/src/sans/perspectives/fitting/fitpanel.py
r5e48acb r05efe88 200 200 self.opened_pages = {} 201 201 202 202 203 def set_state(self, state): 203 204 """ … … 439 440 caption = "BatchPage" + str(self.batch_page_index) 440 441 self.SetPageText(pos, caption) 442 page.batch_on = self.batch_on 441 443 page.window_caption = caption 442 444 page.window_name = caption … … 478 480 if (data.__class__.__name__ == "Data2D" and enable2D)\ 479 481 or (data.__class__.__name__ == "Data1D" and not enable2D): 482 page.batch_on = self.batch_on 480 483 page.fill_data_combobox(data_list) 484 caption = "FitPage" + str(self.fit_page_index) 485 self.SetPageText(pos, caption) 481 486 self.SetSelection(pos) 482 487 return page
Note: See TracChangeset
for help on using the changeset viewer.