diff options
Diffstat (limited to 'js/stage/stage.reel')
-rwxr-xr-x | js/stage/stage.reel/stage.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/stage/stage.reel/stage.js b/js/stage/stage.reel/stage.js index 6a8afad4..5734e317 100755 --- a/js/stage/stage.reel/stage.js +++ b/js/stage/stage.reel/stage.js | |||
@@ -522,7 +522,7 @@ exports.Stage = Montage.create(Component, { | |||
522 | elt = this.application.ninja.currentDocument.GetElementFromPoint(point.x + this.scrollLeft,point.y + this.scrollTop); | 522 | elt = this.application.ninja.currentDocument.GetElementFromPoint(point.x + this.scrollLeft,point.y + this.scrollTop); |
523 | 523 | ||
524 | // workaround Chrome 3d bug | 524 | // workaround Chrome 3d bug |
525 | if(elt === this._viewport) | 525 | if(this.application.ninja.currentDocument.inExclusion(elt) !== -1) |
526 | { | 526 | { |
527 | return this._getElementUsingSnapping(point); | 527 | return this._getElementUsingSnapping(point); |
528 | } else { | 528 | } else { |