-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Unneeded argument in get_linestyle #3355
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
Removed unnecessary argument `style` in `get_linestyle` of `GraphicsContextBase`. Also made `GraphicsContextBase` inherit from object to support any future propertyfication...
This is a backwards incompatible change and I am a bit distressed that none of our tests are failing. This needs an entry in |
This closes #3354 |
It is technically a backwards incompatible change, but it seems that But, yes, at the very least, let's note it in the api_changes for On Sat, Aug 9, 2014 at 9:08 AM, Thomas A Caswell notifications@github.com
|
I am 👍 on this change, just want to make sure it gets documented correctly. |
In most cases in the renderer In the python code, it mostly just requires the I would imagine you would never really see any of the GraphicsContext
|
Made dashes and sketch_params into properties in the style class. Fixes issue #2
Just checking back in on this. Is there something I need to do? |
It does seem to need a rebase, or something. Why is the style.py file being added here? |
moving the |
Hmm...The commit I intended to pull was bd06d88, which should only have 1 changed file.. In fact, this is the original pull (see top of page). the more recent commits shouldn't be linked to this pull request. |
Closing this as moving the @JamesRamm If you are still interested in working on this have a look at #3424 and the discussion around MEP25. |
Removed unnecessary argument
style
inget_linestyle
ofGraphicsContextBase
.Also made
GraphicsContextBase
inherit from object to support anyfuture propertyfication...