Changeset 3d2d54a6 in sasview for sansguiframe/src/sans/guiframe
- Timestamp:
- Aug 11, 2011 12:16:57 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:
- 2636188
- Parents:
- 9f4f8f4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/gui_manager.py
rd81008e r3d2d54a6 257 257 self.Bind(EVT_NEW_LOAD_DATA, self.on_load_data) 258 258 self.Bind(EVT_NEW_BATCH, self.on_batch_selection) 259 self.Bind(EVT_NEW_COLOR, self.on_color_selection) 259 260 self.setup_custom_conf() 260 261 … … 277 278 plug.set_batch_selection(self.batch_on) 278 279 280 def on_color_selection(self, event): 281 """ 282 :param event: contains parameters for id and color 283 """ 284 color, id = event.color, event.id 285 for plug in self.plugins: 286 plug.add_color(color, id) 287 288 279 289 def setup_custom_conf(self): 280 290 """
Note: See TracChangeset
for help on using the changeset viewer.