8000
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 7b92f8e commit f43bd97Copy full SHA for f43bd97
src/_mplcairo.cpp
@@ -2158,7 +2158,9 @@ Only intended for debugging purposes.
2158
.def("set_capstyle", &GraphicsContextRenderer::set_capstyle)
2159
.def("set_clip_rectangle", &GraphicsContextRenderer::set_clip_rectangle)
2160
.def("set_clip_path", &GraphicsContextRenderer::set_clip_path)
2161
- .def("set_dashes", &GraphicsContextRenderer::set_dashes)
+ .def("set_dashes", &GraphicsContextRenderer::set_dashes,
2162
+ // AbstractPathEffect._update_gc calls set_dashes with kwargs.
2163
+ "dash_offset"_a, "dash_list"_a)
2164
.def("set_foreground", &GraphicsContextRenderer::set_foreground,
2165
"fg"_a, "isRGBA"_a=false)
2166
.def("set_hatch", &GraphicsContextRenderer::set_hatch)
0 commit comments