Fix bug in ray-rect intersection test (#4595)
This made submenu popups stay open when they perhaps shouldn't be
This commit is contained in:
parent
d4ac91ab6d
commit
b6805a8006
|
@ -628,7 +628,7 @@ impl Rect {
|
||||||
tmax = tmax.min(ty1.max(ty2));
|
tmax = tmax.min(ty1.max(ty2));
|
||||||
}
|
}
|
||||||
|
|
||||||
tmin <= tmax
|
0.0 <= tmin && tmin <= tmax
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue