1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 22:00:03 -04:00

typos : intersects_ray() (#4201)

typos : intersects_ray()
This commit is contained in:
rustbasic
2024-03-21 20:10:02 +09:00
committed by GitHub
parent 2c9c5f0dea
commit 7d3d7ce0ca
2 changed files with 2 additions and 2 deletions

View File

@@ -641,7 +641,7 @@ impl MenuState {
if let Some(sub_menu) = self.current_submenu() {
if let Some(pos) = pointer.hover_pos() {
let rect = sub_menu.read().rect;
return rect.intesects_ray(pos, pointer.velocity().normalized());
return rect.intersects_ray(pos, pointer.velocity().normalized());
}
}
false