summaryrefslogtreecommitdiffstats
path: root/core/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-01-20 13:29:25 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-01-20 13:29:25 +0100
commit25f182f933ea6b7c112c8f9a450a98dc9b9eebdd (patch)
treefdc498d705f033d3c432e6a06b8cd223dfd82633 /core/src/lib.rs
parent4d502012b3e3ed9d9ef80f21078d53d182cdaa1b (diff)
downloadiced-25f182f933ea6b7c112c8f9a450a98dc9b9eebdd.tar.gz
iced-25f182f933ea6b7c112c8f9a450a98dc9b9eebdd.tar.bz2
iced-25f182f933ea6b7c112c8f9a450a98dc9b9eebdd.zip
Introduce `Border` struct analogous to `Shadow`
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r--core/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs
index b326d0f3..bbc973f0 100644
--- a/core/src/lib.rs
+++ b/core/src/lib.rs
@@ -17,6 +17,7 @@
rustdoc::broken_intra_doc_links
)]
pub mod alignment;
+pub mod border;
pub mod clipboard;
pub mod event;
pub mod font;
@@ -27,7 +28,6 @@ pub mod layout;
pub mod mouse;
pub mod overlay;
pub mod renderer;
-pub mod shadow;
pub mod svg;
pub mod text;
pub mod time;
@@ -37,7 +37,6 @@ pub mod window;
mod angle;
mod background;
-mod border_radius;
mod color;
mod content_fit;
mod element;
@@ -47,6 +46,7 @@ mod padding;
mod pixels;
mod point;
mod rectangle;
+mod shadow;
mod shell;
mod size;
mod vector;
@@ -54,7 +54,7 @@ mod vector;
pub use alignment::Alignment;
pub use angle::{Degrees, Radians};
pub use background::Background;
-pub use border_radius::BorderRadius;
+pub use border::Border;
pub use clipboard::Clipboard;
pub use color::Color;
pub use content_fit::ContentFit;