Skip to content

Commit 6fcb12e

Browse files
committed
Fast TPie fix
1 parent 5c5589f commit 6fcb12e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/jsroot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175908,7 +175908,7 @@ class TPiePainter extends ObjectPainter {
175908175908

175909175909
// upper
175910175910
g.append('svg:path')
175911-
.attr('d', `M0,0l${x1},${y1}${pie}z`)
175911+
.attr('d', `M0,0l${x1},${y1}${pie_path}z`)
175912175912
.call(attline.func)
175913175913
.call(attfill.func);
175914175914
} else {

modules/draw/TPiePainter.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ class TPiePainter extends ObjectPainter {
250250

251251
// upper
252252
g.append('svg:path')
253-
.attr('d', `M0,0l${x1},${y1}${pie}z`)
253+
.attr('d', `M0,0l${x1},${y1}${pie_path}z`)
254254
.call(attline.func)
255255
.call(attfill.func);
256256
} else {

0 commit comments

Comments
 (0)