8000 Fix path length limit · matplotlib/matplotlib@6735c35 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 6735c35

Browse files
committed
Fix path length limit
1 parent 57050f1 commit 6735c35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_backend_agg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RendererAgg::RendererAgg(unsigned int width, unsigned int height, double dpi)
4646
rendererBase(),
4747
rendererAA(),
4848
rendererBin(),
49-
theRasterizer(4096),
49+
theRasterizer(8192),
5050
lastclippath(NULL),
5151
_fill_color(agg::rgba(1, 1, 1, 0))
5252
{

0 commit comments

Comments
 (0)
0