Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aca804f commit 7a727a1Copy full SHA for 7a727a1
1 file changed
lib/matplotlib/backends/backend_cairo.py
@@ -307,6 +307,8 @@ def _draw_paths():
307
# We actually need to call the setters to reset the internal state.
308
vars(gc).update(gc_vars)
309
for k, v in gc_vars.items():
310
+ if k == "_linestyle": # Deprecated, no effect.
311
+ continue
312
try:
313
getattr(gc, "set" + k)(v)
314
except (AttributeError, TypeError) as e:
0 commit comments