瀏覽代碼

Input should no longer identify mouse as inbounds if target does not have focus.

dev
Bryan Miller 5 年之前
父節點
當前提交
305698599c
共有 1 個文件被更改,包括 7 次插入4 次删除
  1. +7
    -4
      app/js/ui/Input.js

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

@@ -451,10 +451,13 @@ export default class Input{
inbounds: true
}
if (this.__mouseTarget !== null){
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);
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;
}
pos.x = Math.floor(pos.x);
pos.y = Math.floor(pos.y);

Loading…
取消
儲存