diff options
author | 2023-01-02 20:32:43 +0100 | |
---|---|---|
committer | 2023-01-02 20:32:43 +0100 | |
commit | d956b8a9fb9d0f18c5568c91fc7b97900477a68e (patch) | |
tree | c2de1b39375037d9a54bb7f057f1197263b05dc0 /native/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 'native/src/window.rs')
-rw-r--r-- | native/src/window.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/window.rs b/native/src/window.rs index f910b8f2..1b97e655 100644 --- a/native/src/window.rs +++ b/native/src/window.rs @@ -2,7 +2,9 @@ mod action; mod event; mod mode; +mod user_attention; pub use action::Action; pub use event::Event; pub use mode::Mode; +pub use user_attention::UserAttention; |