diff options
| author | 2023-06-27 19:41:03 +0200 | |
|---|---|---|
| committer | 2023-06-27 19:41:03 +0200 | |
| commit | 5ae726e02c4d6c9889ef7335d9bc80ef1992e34f (patch) | |
| tree | e1f3c2b81eee55d9a1426e847dfbb25d523d7885 /winit/src/application | |
| parent | 93673836cd2932351b25dea6ca46ae50d0e35ace (diff) | |
| download | iced-5ae726e02c4d6c9889ef7335d9bc80ef1992e34f.tar.gz iced-5ae726e02c4d6c9889ef7335d9bc80ef1992e34f.tar.bz2 iced-5ae726e02c4d6c9889ef7335d9bc80ef1992e34f.zip  | |
Move `Screenshot` inside `window` module
Diffstat (limited to '')
| -rw-r--r-- | winit/src/application.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/winit/src/application.rs b/winit/src/application.rs index 5176bec6..a4687375 100644 --- a/winit/src/application.rs +++ b/winit/src/application.rs @@ -19,7 +19,7 @@ use crate::graphics::compositor::{self, Compositor};  use crate::runtime::clipboard;  use crate::runtime::program::Program;  use crate::runtime::user_interface::{self, UserInterface}; -use crate::runtime::{Command, Debug, Screenshot}; +use crate::runtime::{Command, Debug};  use crate::style::application::{Appearance, StyleSheet};  use crate::{Clipboard, Error, Proxy, Settings}; @@ -819,7 +819,7 @@ pub fn run_command<A, C, E>(                      );                      proxy -                        .send_event(tag(Screenshot::new( +                        .send_event(tag(window::Screenshot::new(                              bytes,                              state.physical_size(),                          )))  | 
