From 68262a5342ae789d907cef71e0800ef0161a5b74 Mon Sep 17 00:00:00 2001 From: pixelzoom Date: Thu, 10 Dec 2020 15:52:25 -0700 Subject: [PATCH] fix clippingType in GridLineSet, https://github.com/phetsims/bamboo/issues/11 --- js/GridLineSet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/GridLineSet.js b/js/GridLineSet.js index 7072553..41b3a17 100644 --- a/js/GridLineSet.js +++ b/js/GridLineSet.js @@ -38,7 +38,7 @@ class GridLineSet extends Path { this.axisOrientation = axisOrientation; this.spacing = spacing; this.origin = options.origin; - this.clipped = options.clipped; //TODO this is not used - should it be options.clippingType? + this.clippingType = options.clippingType; const update = () => this.updateGridLineSet(); chartModel.link( update );