-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
background color of text is forground color on MacOSX #4609
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Confirming that I see the same with the OSX backend |
#4202 doesn't fix it. This looks like a different problem. Strangely, the text is very faintly visible as a slight lightening of the red. This is easier to see if you use
|
I can't reproduce this bug. It's working fine for me with the MacOSX backend, matplotlib version 1.4.3. |
@efiring Thanks! That is indeed the issue. With Python3, I am seeing this bug. Let me look into this. |
See pull request #4617 for a bug fix. |
Fixed by #4617 |
Sorry for the late reply: I have the problem with Python 2.7.9-1. Got the Thanks for looking into this, Mark On Thu, Jul 9, 2015 at 11:24 PM, Eric Firing notifications@github.com
|
@mbakker7 Thanks for the confirmation If you have a chance please test master and report it it fixes it for you |
With MacOSX backend, the following fails:
from pylab import *
plot([1, 2, 3])
text(1, 2, 'Hello', backgroundcolor = 'red')
This plots a nice red box but no text. It looks like the backgroundcolor is set as the foreground.
mpl version 1.4.3
backend: MacOSX
Works correctly with Qt4Agg and, as reported on mailinglist, works correctly with TkAgg
The text was updated successfully, but these errors were encountered: