From d95b9bf244b5c1f7c8c3e84c1c05a5f81c9162e4 Mon Sep 17 00:00:00 2001 From: Night_Hunter Date: Sat, 10 Dec 2022 01:53:00 +1300 Subject: Add `RequestUserAttention` to `window::Action` --- native/src/window.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'native/src/window.rs') 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; -- cgit