Changeset 5eede4e in sasview for sansguiframe/src/sans/guiframe
- Timestamp:
- Aug 30, 2011 5:13:55 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:
- e4a703a
- Parents:
- 9c8f3ad
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter1D.py
rcd61c4d r5eede4e 229 229 if data.id in self.plots.keys(): 230 230 #replace except label 231 new_data = self.plots[data.id]232 data.label = new_data.label233 data.custom_color = new_data.custom_color231 old_data = self.plots[data.id] 232 data.label = old_data.label 233 data.custom_color = old_data.custom_color 234 234 self.graph.replace(data) 235 235 self.plots[data.id] = data … … 237 237 self.plots[data.id] = data 238 238 self.graph.add(self.plots[data.id]) 239 239 240 240 ## Set the view scale for all plots 241 241 self._onEVT_FUNC_PROPERTY() 242 ## render the graph<=No need this done in canvas243 #self.graph.render(self)244 #self.subplot.figure.canvas.draw_idle()245 242 246 243 def draw_plot(self):
Note: See TracChangeset
for help on using the changeset viewer.