summaryrefslogtreecommitdiffstats
path: root/winit
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-01-15 18:23:50 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-01-15 18:23:50 +0100
commit984583b0cca86d7ba8f865489cbebeb181349c19 (patch)
treeaa9c1c3808f9831a930a803b9dc7ba894248cfc1 /winit
parent0646280d674e02fb11fcba0dc1c9b2d3d4d8a0fe (diff)
parent45dc02e9bd0b4f2c6cc65781b850f460cddf6171 (diff)
downloadiced-984583b0cca86d7ba8f865489cbebeb181349c19.tar.gz
iced-984583b0cca86d7ba8f865489cbebeb181349c19.tar.bz2
iced-984583b0cca86d7ba8f865489cbebeb181349c19.zip
Merge pull request #701 from cossonfork/focus_event
Diffstat (limited to '')
-rw-r--r--winit/src/conversion.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/winit/src/conversion.rs b/winit/src/conversion.rs
index f073c474..0e04b35d 100644
--- a/winit/src/conversion.rs
+++ b/winit/src/conversion.rs
@@ -109,6 +109,11 @@ pub fn window_event(
WindowEvent::ModifiersChanged(new_modifiers) => Some(Event::Keyboard(
keyboard::Event::ModifiersChanged(self::modifiers(*new_modifiers)),
)),
+ WindowEvent::Focused(focused) => Some(Event::Window(if *focused {
+ window::Event::Focused
+ } else {
+ window::Event::Unfocused
+ })),
WindowEvent::HoveredFile(path) => {
Some(Event::Window(window::Event::FileHovered(path.clone())))
}