Fix wrong property name in Stroke constructor

This commit is contained in:
Frederic Junod
2018-09-28 08:50:25 +02:00
parent fa7a92b565
commit 8c69380ef6

View File

@@ -1035,7 +1035,7 @@ class WebGLPolygonReplay extends WebGLReplay {
} else {
const nullStrokeStyle = new Stroke({
color: [0, 0, 0, 0],
lineWidth: 0
width: 0
});
this.lineStringReplay.setFillStrokeStyle(null, nullStrokeStyle);
}