summaryrefslogtreecommitdiffstats
path: root/runtime/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-06-27 19:41:03 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-06-27 19:41:03 +0200
commit5ae726e02c4d6c9889ef7335d9bc80ef1992e34f (patch)
treee1f3c2b81eee55d9a1426e847dfbb25d523d7885 /runtime/src/lib.rs
parent93673836cd2932351b25dea6ca46ae50d0e35ace (diff)
downloadiced-5ae726e02c4d6c9889ef7335d9bc80ef1992e34f.tar.gz
iced-5ae726e02c4d6c9889ef7335d9bc80ef1992e34f.tar.bz2
iced-5ae726e02c4d6c9889ef7335d9bc80ef1992e34f.zip
Move `Screenshot` inside `window` module
Diffstat (limited to '')
-rw-r--r--runtime/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs
index 32ed14d8..50abf7b2 100644
--- a/runtime/src/lib.rs
+++ b/runtime/src/lib.rs
@@ -60,7 +60,6 @@ mod debug;
#[cfg(not(feature = "debug"))]
#[path = "debug/null.rs"]
mod debug;
-mod screenshot;
pub use iced_core as core;
pub use iced_futures as futures;
@@ -69,5 +68,4 @@ pub use command::Command;
pub use debug::Debug;
pub use font::Font;
pub use program::Program;
-pub use screenshot::{CropError, Screenshot};
pub use user_interface::UserInterface;