[matplotlib-devel] [patch] Raise figures on pylab.show() with Qt4 backend

2009-07-24 Thread Gellule Xg
Hi all, I've just tried the Qt4 backend and noticed that, different from the previous backend I was using, the last command of a script pylab.show() does not raise the figures to the front (they show up but in the background). This is the case at least on my OS X machine. I personally feels li

[matplotlib-devel] pylab.imshow() does not handle clip_path properly

2009-10-06 Thread Gellule Xg
This is a bug report for matplotlib version 0.99.1.1 The clip_path keyword of imshow() does not work when setting it to (Path, Transform) for two reasons: 1. On line 622 of artist.py, v is now the tuple (Path,Transform) and should be apply to func with apply(func,v). Hence the following sugges

Re: [matplotlib-devel] pylab.imshow() does not handle clip_path properly

2009-10-06 Thread Gellule Xg
>> This is a bug report for matplotlib version 0.99.1.1 >> >> The clip_path keyword of imshow() does not work when setting it to >> (Path, Transform) for two reasons: > > Hi, Thanks for the report. Do you have a simple test script that we can > use to see the problem and then fix it? We will then

[matplotlib-devel] Problems with blocking_input.py (and fixes?)

2009-10-06 Thread Gellule Xg
I'm having some regression issues with 0.99.1.1 compared to 0.98.5.3 in "blocking_input.py". I'm using pylab.clabel(...,manual=True) expecting my figure to ask me to input the locations of the contour labels. All was fine in 0.98.5.3, it does not seem to work with 0.99.1.1. After some investig

[matplotlib-devel] Test invitation: activate figure windows for non-interactive macosx backend

2012-01-12 Thread Gellule Xg
If you are a macosx backend user, you are welcomed to test the following branch: https://github.com/gellule/matplotlib. With the branch, when issuing a pylab.show() in non-interactive mode, the plot windows should appear in the foreground with focus, instead of appearing in the background. It s

Re: [matplotlib-devel] Test invitation: activate figure windows for non-interactive macosx backend

2012-01-13 Thread Gellule Xg
On 1/13/12 12:53 , Tony Yu wrote: > > On Thu, Jan 12, 2012 at 1:37 PM, Gellule Xg <mailto:[email protected]>> wrote: > > If you are a macosx backend user, you are welcomed to test the following > branch: https://github.com/gellule/matplotlib. With the bran

[matplotlib-devel] macosx backend: Move all figures to front with non-interactive show()

2012-07-23 Thread Gellule Xg
Dear macosx backend users, Could you please have a look at pull request https://github.com/matplotlib/matplotlib/pull/1036. It removes a minor annoyance where only the last figure would appear to the front after issuing a non-interactive show(). It builds upon https://github.com/matplotlib/mat