I finally tracked down another flipy type bug. The TkAgg blitting should be rock solid now. Thanks, Charlie On 11/22/05, Charlie Moad <cw...@gm...> wrote: > Arg! One petty thing after another. Here is a simple script > demonstrating that the last row does not render the SpanSelector, yet > the callback works fine??? > > ------------------------------------ > import matplotlib > from matplotlib.widgets import SpanSelector > matplotlib.use('TkAgg') > from pylab import * > > s =3D 3 > axs =3D [subplot(s,s,i) for i in xrange(1,s**2+1)] > def onselect(x, y): print x, y > [SpanSelector(a, onselect, 'vertical', useblit=3DTrue) for a in axs] > show() > ------------------------------------ > > Any clues as to where to look for this bug? Sorry to be a hassle, but > I need this specifically to embed in a Tk only app. > > Thanks, > Charlie > > On 11/19/05, John Hunter <jdh...@ac...> wrote: > > >>>>> "Charlie" =3D=3D Charlie Moad <cw...@gm...> writes: > > > > Charlie> Awesome, thanks! Out of curiousity... did you figure > > Charlie> this out visually or by comparing with something? > > > > Let's just say I've encountered the flipy bug before :-) > > > > JDH > > >