Changeset ff04dfc in sasview for sansguiframe/src/sans/guiframe/gui_manager.py
- Timestamp:
- Oct 19, 2011 4:43:25 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:
- 63f4b8e
- Parents:
- 5d192cd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/gui_manager.py
r5d344c6 rff04dfc 997 997 count = 0 998 998 for item in self.panels: 999 if self.panels[item].window_name.startswith(p.window_name): 999 if self.panels[item].window_name.startswith(p.window_name)\ 1000 and not self._mgr.GetPane(p.window_name).IsOk(): 1000 1001 count += 1 1001 1002 windowname = p.window_name … … 1003 1004 if count > 0: 1004 1005 windowname += str(count+1) 1005 #caption += (' '+str(count))1006 1006 p.window_name = windowname 1007 1007 … … 2406 2406 self._data_manager.delete_data(data_id=data_id, 2407 2407 theory_id=theory_id) 2408 2408 2409 2409 def _remove_res_plot(self, id): 2410 2410 """
Note: See TracChangeset
for help on using the changeset viewer.