mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 14:10:14 -05:00
Fix mistake in previous commit.
This commit is contained in:
parent
43b3ac6beb
commit
151f7026e1
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ var PlacedItem = this.PlacedItem = Item.extend(/** @lends PlacedItem# */{
|
|||
|
||||
_hitTest: function(point, options, matrix) {
|
||||
var hitResult = this._symbol._definition.hitTest(
|
||||
point._transformPoint(this.matrix), options, matrix);
|
||||
this.matrix._transformPoint(point), options, matrix);
|
||||
// TODO: When the symbol's definition is a path, should hitResult contain
|
||||
// information like HitResult#curve?
|
||||
if (hitResult)
|
||||
|
|
Loading…
Reference in a new issue