Changeset a7bd562 in sasview for guiframe/local_perspectives


Ignore:
Timestamp:
Jun 7, 2009 2:48:03 PM (15 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
c3b4dcb
Parents:
1ebb590
Message:

guiframe: fixed code that generated an exception when a plotted plottable didn't have an 'id' data member (a concept that exists only for sansview - I didn't try to fix the spaghetti… refactor needed).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guiframe/local_perspectives/plotting/Plotter1D.py

    r1abcb04 ra7bd562  
    114114            # a new plottable overwrites a plotted one  using the same id 
    115115            for plottable in self.plots.itervalues(): 
    116                 if hasattr(event.plot,"id"): 
     116                if hasattr(event.plot,"id") and hasattr(plottable, "id"): 
    117117                    if event.plot.id==plottable.id : 
    118118                        self.graph.delete(plottable) 
Note: See TracChangeset for help on using the changeset viewer.