| Index: Source/devtools/front_end/timeline/Layers3DView.js
|
| diff --git a/Source/devtools/front_end/timeline/Layers3DView.js b/Source/devtools/front_end/timeline/Layers3DView.js
|
| index f7cb088893f3bfcf945d2056cdaeb88b410558d0..51033731d1896a7e9b3d4ca28e61ca720e3985d9 100644
|
| --- a/Source/devtools/front_end/timeline/Layers3DView.js
|
| +++ b/Source/devtools/front_end/timeline/Layers3DView.js
|
| @@ -47,7 +47,7 @@ WebInspector.Layers3DView = function()
|
| this._canvasElement.addEventListener("dblclick", this._onDoubleClick.bind(this), false);
|
| this._canvasElement.addEventListener("mousedown", this._onMouseDown.bind(this), false);
|
| this._canvasElement.addEventListener("mouseup", this._onMouseUp.bind(this), false);
|
| - this._canvasElement.addEventListener("mouseout", this._onMouseMove.bind(this), false);
|
| + this._canvasElement.addEventListener("mouseleave", this._onMouseMove.bind(this), false);
|
| this._canvasElement.addEventListener("mousemove", this._onMouseMove.bind(this), false);
|
| this._canvasElement.addEventListener("contextmenu", this._onContextMenu.bind(this), false);
|
|
|
|
|