Moved addVelocity to _move.

This commit is contained in:
2021-01-05 16:25:55 +01:00
parent 114c217ffa
commit fa0256d782
2 changed files with 11 additions and 6 deletions
+2 -2
View File
@@ -849,8 +849,8 @@ export class InteractionDelegate {
if (Events.isCaptured(event)) {
return false
}
let captured = this.target.capture(event)
return captured
return this.target.capture ? this.target.capture(event) : false
}
getPosition(event) {