diff options
author | 2023-01-02 20:17:24 +0100 | |
---|---|---|
committer | 2023-01-02 20:17:36 +0100 | |
commit | 6855961358d6b81d700afd65445c292fd0da4442 (patch) | |
tree | c2de1b39375037d9a54bb7f057f1197263b05dc0 /winit/src/window.rs | |
parent | d95b9bf244b5c1f7c8c3e84c1c05a5f81c9162e4 (diff) | |
download | iced-6855961358d6b81d700afd65445c292fd0da4442.tar.gz iced-6855961358d6b81d700afd65445c292fd0da4442.tar.bz2 iced-6855961358d6b81d700afd65445c292fd0da4442.zip |
Create conversion function for `user_attention` in `iced_winit`
Diffstat (limited to 'winit/src/window.rs')
-rw-r--r-- | winit/src/window.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winit/src/window.rs b/winit/src/window.rs index f6b43a0f..89db3262 100644 --- a/winit/src/window.rs +++ b/winit/src/window.rs @@ -2,7 +2,7 @@ use crate::command::{self, Command}; use iced_native::window; -pub use window::{Event, Mode}; +pub use window::{Event, Mode, UserAttention}; /// Closes the current window and exits the application. pub fn close<Message>() -> Command<Message> { |