summaryrefslogtreecommitdiffstats
path: root/winit/src/window.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-01-02 20:32:43 +0100
committerLibravatar GitHub <noreply@github.com>2023-01-02 20:32:43 +0100
commitd956b8a9fb9d0f18c5568c91fc7b97900477a68e (patch)
treec2de1b39375037d9a54bb7f057f1197263b05dc0 /winit/src/window.rs
parent54105a24e11edb48670afa8246ad891af147aab5 (diff)
parent6855961358d6b81d700afd65445c292fd0da4442 (diff)
downloadiced-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.rs2
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> {