Re: [matplotlib-devel] Enhancement to matplotlib's PyQt4 backend

2009-12-01 Thread Darren Dale
On Tue, Apr 28, 2009 at 8:18 AM, Pierre Raybaut wrote: > Hi all, > > I would like to contribute to matplotlib with this enhancement for the > PyQt4 backend: the idea is to add a toolbar button to configure figure > options (axes, curves, ...). > > It's based on a tiny module called formlayout to g

[matplotlib-devel] Z-Order Sorting

2009-12-01 Thread James Evans
All, I have been looking at some of the recent z-order changes and have found an issue that breaks previous behavior. Previously when items were added to a Figure or an Axes with the same z-order value, they were rendered in order of when they were added, so that the first one added is 'underne

Re: [matplotlib-devel] Z-Order Sorting

2009-12-01 Thread Eric Firing
James Evans wrote: > All, > > I have been looking at some of the recent z-order changes and have found an > issue that breaks previous behavior. Previously when > items were added to a Figure or an Axes with the same z-order value, they > were rendered in order of when they were added, so that

Re: [matplotlib-devel] Z-Order Sorting

2009-12-01 Thread Eric Firing
James Evans wrote: > All, > > I have been looking at some of the recent z-order changes and have found an > issue that breaks previous behavior. Previously when > items were added to a Figure or an Axes with the same z-order value, they > were rendered in order of when they were added, so that

Re: [matplotlib-devel] Z-Order Sorting

2009-12-01 Thread John Hunter
On Tue, Dec 1, 2009 at 6:21 PM, Eric Firing wrote: > This is easy to fix by using the key kwarg (added in python 2.4) of the > sort method, because python uses a stable sort.  It looks like it only > needs to be fixed in Axes.draw, because Figure.draw has never paid any > attention to zorder anywa

Re: [matplotlib-devel] Z-Order Sorting

2009-12-01 Thread Eric Firing
John Hunter wrote: > On Tue, Dec 1, 2009 at 6:21 PM, Eric Firing wrote: >> This is easy to fix by using the key kwarg (added in python 2.4) of the >> sort method, because python uses a stable sort. It looks like it only >> needs to be fixed in Axes.draw, because Figure.draw has never paid any >>