[matplotlib-devel] draw() in Figure does not obey get_animated()

2011-10-14 Thread Daniel Hyams
This could be intentional...I don't know much about the history of matplotlib, so it's hard to guess at these things. Anyway, the figure container does not care about the "animated" state of its artists when it does its drawing. To fix this, in the Figure.draw routine (in figure.py), add the foll

Re: [matplotlib-devel] Patch: Reorder #includes in ttconv/pprdrv_tt2.cpp

2011-10-14 Thread John Hunter
On Fri, Oct 14, 2011 at 6:30 AM, Wesley Emeneker wrote: > Attached is patch that moves > #include > to before > #include > > The Portland group compiler (v 11.8) won't build ttconv/pprdrv_tt2.cpp with > the original ordering. > This is most likely a compiler bug, but changing the include order s

[matplotlib-devel] Patch: Reorder #includes in ttconv/pprdrv_tt2.cpp

2011-10-14 Thread Wesley Emeneker
Attached is patch that moves #include to before #include The Portland group compiler (v 11.8) won't build ttconv/pprdrv_tt2.cpp with the original ordering. This is most likely a compiler bug, but changing the include order seems pretty harmless. Thanks for the great tool. I love matplotlib. W