mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
strict comparisons
This commit is contained in:
parent
3698fe9b6b
commit
5cd05da31e
1 changed files with 1 additions and 1 deletions
|
@ -2500,7 +2500,7 @@ function MyController(hand) {
|
|||
var pointerEvent;
|
||||
if (rayPickInfo.overlayID) {
|
||||
var overlay = rayPickInfo.overlayID;
|
||||
if ((Overlays.getProperty(overlay, "type") == "web3d") && Overlays.keyboardFocusOverlay != overlay) {
|
||||
if ((Overlays.getProperty(overlay, "type") === "web3d") && Overlays.keyboardFocusOverlay != overlay) {
|
||||
Entities.keyboardFocusEntity = null;
|
||||
Overlays.keyboardFocusOverlay = overlay;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue