Added WindowHasFocus and WindowLostFocus events to Android (#1733)

* Added WindowHasFocus and WindowLostFocus events to Android

* Update changelog
This commit is contained in:
Max de Danschutter
2020-10-08 19:44:41 +02:00
committed by GitHub
parent d18afb4a50
commit 676fb947f2
2 changed files with 24 additions and 0 deletions

View File

@@ -148,6 +148,28 @@ impl<T: 'static> EventLoop<T> {
);
}
}
Event::WindowHasFocus => {
call_event_handler!(
event_handler,
self.window_target(),
control_flow,
event::Event::WindowEvent {
window_id: window::WindowId(WindowId),
event: event::WindowEvent::Focused(true),
}
);
}
Event::WindowLostFocus => {
call_event_handler!(
event_handler,
self.window_target(),
control_flow,
event::Event::WindowEvent {
window_id: window::WindowId(WindowId),
event: event::WindowEvent::Focused(false),
}
);
}
_ => {}
},
Some(EventSource::InputQueue) => {