diff --git a/src/path/Path.js b/src/path/Path.js index a39c6268..55292fe0 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -1229,7 +1229,8 @@ var Path = this.Path = PathItem.extend(/** @lends Path# */{ _hitTest: function(point, options, matrix) { var tolerance = options.tolerance || 0, - radius = (options.stroke ? this.getStrokeWidth() / 2 : 0) + tolerance, + radius = (options.stroke && this.getStrokeColor() + ? this.getStrokeWidth() / 2 : 0) + tolerance, loc, res; // If we're asked to query for segments, ends or handles, do all that