summaryrefslogtreecommitdiffstats
path: root/native/src/window.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-01-12 05:18:25 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-01-12 05:18:25 +0100
commite2ddef74387bcd81859b56e47316c47d7b739a01 (patch)
tree03864b74535a2abc6fdcfd5d08f3f9539e8b4004 /native/src/window.rs
parent502c9bfbf6eb6193adf6c88abdc4cef90816a04b (diff)
downloadiced-e2ddef74387bcd81859b56e47316c47d7b739a01.tar.gz
iced-e2ddef74387bcd81859b56e47316c47d7b739a01.tar.bz2
iced-e2ddef74387bcd81859b56e47316c47d7b739a01.zip
Replace `Option<Instant>` with `RedrawRequest` enum
Diffstat (limited to 'native/src/window.rs')
-rw-r--r--native/src/window.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/window.rs b/native/src/window.rs
index 4bccc471..6ebe15b1 100644
--- a/native/src/window.rs
+++ b/native/src/window.rs
@@ -2,11 +2,13 @@
mod action;
mod event;
mod mode;
+mod redraw_request;
mod user_attention;
pub use action::Action;
pub use event::Event;
pub use mode::Mode;
+pub use redraw_request::RedrawRequest;
pub use user_attention::UserAttention;
use crate::subscription::{self, Subscription};