浏览代码

Reverted last change to Input. Didn't work.

dev
Bryan Miller 5 年前
父节点
当前提交
3df24cc4de
共有 1 个文件被更改,包括 5 次插入7 次删除
  1. +5
    -7
      app/js/ui/Input.js

+ 5
- 7
app/js/ui/Input.js 查看文件

@@ -451,13 +451,11 @@ export default class Input{
inbounds: true
}
if (this.__mouseTarget !== null){
if (this.__mouseTarget === document.activeElement){
var rect = this.__mouseTarget.getBoundingClientRect();
pos.x -= rect.left;
pos.y -= rect.top;
pos.inbounds = (pos.x >= 0 && pos.x < rect.width && pos.y >= 0 && pos.y < rect.height);
}
pos.inbounds = false;
var rect = this.__mouseTarget.getBoundingClientRect();
pos.x -= rect.left;
pos.y -= rect.top;
// TODO: Detect if element OVER __mouseTarget
pos.inbounds = (pos.x >= 0 && pos.x < rect.width && pos.y >= 0 && pos.y < rect.height);
}
pos.x = Math.floor(pos.x);
pos.y = Math.floor(pos.y);

正在加载...
取消
保存