Changeset 8339

Show
Ignore:
Timestamp:
05/09/08 00:32:38
Author:
jcorgan
Message:

Applied changeset r8279 on trunk to release branch.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gnuradio/branches/releases/3.1/gr-wxgui/src/python/fftsink2.py

    r8336 r8339  
    375375 
    376376    def evt_motion(self, event): 
    377         # Clip to plotted values 
     377        if not hasattr(self, "_points"): 
     378            return # Got here before first window data update 
     379             
     380        # Clip to plotted values 
    378381        (ux, uy) = self.GetXY(event)      # Scaled position 
    379382        x_vals = numpy.array(self._points[:,0])