diff options
author | 2022-12-10 01:53:00 +1300 | |
---|---|---|
committer | 2023-01-02 20:13:42 +0100 | |
commit | d95b9bf244b5c1f7c8c3e84c1c05a5f81c9162e4 (patch) | |
tree | 3d0234ad5bebdf8a748e998484c2e3191e9e1216 /native/src/window.rs | |
parent | 54105a24e11edb48670afa8246ad891af147aab5 (diff) | |
download | iced-d95b9bf244b5c1f7c8c3e84c1c05a5f81c9162e4.tar.gz iced-d95b9bf244b5c1f7c8c3e84c1c05a5f81c9162e4.tar.bz2 iced-d95b9bf244b5c1f7c8c3e84c1c05a5f81c9162e4.zip |
Add `RequestUserAttention` to `window::Action`
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; |