-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
ENH: pass dash_offset through to gc for Line2D #5433
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
Conversation
See my enh_dashoffset branch. I fixed the Agg backend and the PostScript backend. All other backends seemed to already work. (Can't make PR against this because we have too many forks and I can't set yours as the base ?!?) We should add a test based on your example in #5430. |
We have emailed gh about that issue, we are just too big. The work around On Thu, Nov 12, 2015, 09:02 Michael Droettboom notifications@github.com
|
Previously, the user supplied offset to Line2D set_linestyle was silently discarded. This commit makes the value to be passed through to the underlying GC on draw, but not all of the backends do anything with the offset (ex Agg does not).
ddeec98
to
9ee4e99
Compare
I think this is ready to go. |
ENH: pass dash_offset through to gc for Line2D
Backported to 2.0.x as d11e344 |
ENH: pass dash_offset through to gc for Line2D
In |
That can probably be removed. |
Previously, the user supplied offset to Line2D set_linestyle
was silently discarded. This commit makes the value to be passed
through to the underlying GC on draw, but not all of the backends do
anything with the offset (ex Agg does not).