Changeset 9c169f4 in sasview
- Timestamp:
- Mar 2, 2011 3:15:46 PM (14 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:
- 053c769
- Parents:
- 8ec6923
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/gui_manager.py
ra07e72f r9c169f4 1205 1205 pane.Show(False) 1206 1206 self._mgr.Update() 1207 #self.__gui_style = self.__gui_style | GUIFRAME.MANAGER_ON1208 1207 self.__gui_style = self.__gui_style & (~GUIFRAME.MANAGER_ON) 1209 1208 self._data_panel_menu.SetText('Data Explorer ON') … … 1219 1218 self._data_manager.add_data(data_list) 1220 1219 avalaible_data = self._data_manager.get_all_data() 1221 1220 1221 # set data in the data panel 1222 if self._data_panel is not None: 1223 data_state = self._data_manager.get_selected_data() 1224 self._data_panel.load_data_list(data_state) 1222 1225 style = self.__gui_style & GUIFRAME.MANAGER_ON 1223 1226 if style == GUIFRAME.MANAGER_ON: 1227 #wait for button press from the data panel to set_data 1224 1228 if self._data_panel is not None: 1225 data_state = self._data_manager.get_selected_data()1226 self._data_panel.load_data_list(data_state)1227 1229 self._mgr.GetPane(self._data_panel.window_name).Show(True) 1228 self._mgr.Update() 1229 #wait for button press from the data panel to send data 1230 self._mgr.Update() 1230 1231 else: 1231 1232 #automatically send that to the current perspective
Note: See TracChangeset
for help on using the changeset viewer.