diff options
author | 2023-01-02 20:32:43 +0100 | |
---|---|---|
committer | 2023-01-02 20:32:43 +0100 | |
commit | d956b8a9fb9d0f18c5568c91fc7b97900477a68e (patch) | |
tree | c2de1b39375037d9a54bb7f057f1197263b05dc0 /winit/src/window.rs | |
parent | 54105a24e11edb48670afa8246ad891af147aab5 (diff) | |
parent | 6855961358d6b81d700afd65445c292fd0da4442 (diff) | |
download | iced-d956b8a9fb9d0f18c5568c91fc7b97900477a68e.tar.gz iced-d956b8a9fb9d0f18c5568c91fc7b97900477a68e.tar.bz2 iced-d956b8a9fb9d0f18c5568c91fc7b97900477a68e.zip |
Merge pull request #1584 from Night-Hunter-NF/RequestUserAttention
add action to request user attention
Diffstat (limited to '')
-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> { |