Browse Source

Reverted last change to Input. Didn't work.

dev
Bryan Miller 5 years ago
parent
commit
3df24cc4de
1 changed files with 5 additions and 7 deletions
  1. +5
    -7
      app/js/ui/Input.js

+ 5
- 7
app/js/ui/Input.js View File

@@ -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);

Loading…
Cancel
Save