summaryrefslogtreecommitdiffstats
path: root/native/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-05-23 01:07:59 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-07-08 11:12:47 +0200
commit0ff5a02550e5d5de8fb5fd0643ea424d9e508888 (patch)
treeac4e89799a88d1405b0b1c1d6f370328f78ef4a6 /native/src/lib.rs
parenta2642366240f64f0699fe5fc048b99ace2031751 (diff)
downloadiced-0ff5a02550e5d5de8fb5fd0643ea424d9e508888.tar.gz
iced-0ff5a02550e5d5de8fb5fd0643ea424d9e508888.tar.bz2
iced-0ff5a02550e5d5de8fb5fd0643ea424d9e508888.zip
Rename `Layer` to `overlay::Content`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r--native/src/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs
index 99d80126..ea328592 100644
--- a/native/src/lib.rs
+++ b/native/src/lib.rs
@@ -36,9 +36,9 @@
#![forbid(unsafe_code)]
#![forbid(rust_2018_idioms)]
pub mod keyboard;
-pub mod layer;
pub mod layout;
pub mod mouse;
+pub mod overlay;
pub mod program;
pub mod renderer;
pub mod subscription;
@@ -49,7 +49,6 @@ mod clipboard;
mod element;
mod event;
mod hasher;
-mod overlay;
mod runtime;
mod user_interface;
@@ -76,7 +75,6 @@ pub use debug::Debug;
pub use element::Element;
pub use event::Event;
pub use hasher::Hasher;
-pub use layer::Layer;
pub use layout::Layout;
pub use overlay::Overlay;
pub use program::Program;