Only synthesize mouse moves on scene construction if window is active

This commit is contained in:
Nathan Sobo 2022-05-13 13:57:39 -06:00
parent 02e39e756b
commit a620665bed
2 changed files with 11 additions and 2 deletions

View file

@ -122,8 +122,10 @@ impl Presenter {
self.text_layout_cache.finish_frame();
self.cursor_styles = scene.cursor_styles();
if let Some(event) = self.last_mouse_moved_event.clone() {
self.dispatch_event(event, cx)
if cx.window_is_active(self.window_id) {
if let Some(event) = self.last_mouse_moved_event.clone() {
self.dispatch_event(event, cx)
}
}
} else {
log::error!("could not find root_view_id for window {}", self.window_id);