diff options
author | 2023-02-15 14:56:15 -0800 | |
---|---|---|
committer | 2023-02-15 14:56:15 -0800 | |
commit | 3c095aa3f09f28c6fd9d2a7ba220ced407693e0b (patch) | |
tree | 52fcb32a6230f5daa9a675d74c94ab07237b86d6 /native | |
parent | 63fb608d8bea8a653bf011f5f9cffc88525576e0 (diff) | |
download | iced-3c095aa3f09f28c6fd9d2a7ba220ced407693e0b.tar.gz iced-3c095aa3f09f28c6fd9d2a7ba220ced407693e0b.tar.bz2 iced-3c095aa3f09f28c6fd9d2a7ba220ced407693e0b.zip |
Merged in iced master
Diffstat (limited to '')
-rw-r--r-- | native/src/window/action.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/window/action.rs b/native/src/window/action.rs index 63858bc8..e345cdfc 100644 --- a/native/src/window/action.rs +++ b/native/src/window/action.rs @@ -1,4 +1,4 @@ -use crate::window::{Mode, UserAttention}; +use crate::window::{Mode, UserAttention, Settings}; use iced_futures::MaybeSend; use std::fmt; @@ -16,7 +16,7 @@ pub enum Action<T> { /// Spawns a new window with the provided [`window::Settings`]. Spawn { /// The settings of the [`Window`]. - settings: window::Settings, + settings: Settings, }, /// Resize the window. Resize { |