fix: allow overlay mouse interaction outside its bounds

This commit is contained in:
alex-ds13 2025-05-02 15:51:01 +01:00
parent aa2a50110d
commit a01beefa84
2 changed files with 1 additions and 15 deletions

View file

@ -271,13 +271,8 @@ where
let mut layouts = layout.children();
let layout = layouts.next()?;
let cursor_position = cursor.position()?;
let overlay = element.as_overlay_mut();
if !overlay.is_over(layout, renderer, cursor_position) {
return None;
}
Some(
overlay
.overlay(layout, renderer)