Merge pull request #3015 from bradysimon/fix/hover-events

Fix `hover` ignoring events in certain conditions
This commit is contained in:
Héctor 2025-11-29 10:47:30 +01:00 committed by GitHub
commit 565fd2adf7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -924,11 +924,11 @@ where
if !is_visible {
Shell::replace_redraw_request(shell, redraw_request);
}
};
if shell.is_event_captured() {
return;
}
if shell.is_event_captured() {
return;
}
};
self.base.as_widget_mut().update(
base_tree,