diff --git a/interface/src/ui/overlays/Overlays.cpp b/interface/src/ui/overlays/Overlays.cpp index 0c34aa0aba..c1c25b576e 100644 --- a/interface/src/ui/overlays/Overlays.cpp +++ b/interface/src/ui/overlays/Overlays.cpp @@ -280,7 +280,7 @@ unsigned int Overlays::getOverlayAtPoint(const glm::vec2& point) { unsigned int thisID = i.key(); if (i.value()->is3D()) { Base3DOverlay* thisOverlay = static_cast(i.value()); - if (thisOverlay->getDrawOnHUD() && !thisOverlay->getIgnoreRayIntersection()) { + if (!thisOverlay->getIgnoreRayIntersection()) { if (thisOverlay->findRayIntersection(origin, direction, distance, thisFace)) { return thisID; }