summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2022-05-03 19:42:03 +0200
committerLibravatar GitHub <noreply@github.com>2022-05-03 19:42:03 +0200
commit9b4fe6466f34cdb8436266e05b283c3b044b8075 (patch)
tree6040adb36c871836e277de403f9f53e7845c6139 /src
parentcb1aaf1bddd86ef37502602fe0c9d900e8f3f769 (diff)
parentf3d6d3bbcec195aa399db66f729a8c81a28dcfe6 (diff)
downloadiced-9b4fe6466f34cdb8436266e05b283c3b044b8075.tar.gz
iced-9b4fe6466f34cdb8436266e05b283c3b044b8075.tar.bz2
iced-9b4fe6466f34cdb8436266e05b283c3b044b8075.zip
Merge pull request #1330 from iced-rs/expose-padding
Expose `Padding` in `iced` root crate
Diffstat (limited to '')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index bbc60746..60606143 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -226,6 +226,6 @@ pub use settings::Settings;
pub use runtime::alignment;
pub use runtime::futures;
pub use runtime::{
- Alignment, Background, Color, Command, ContentFit, Font, Length, Point,
- Rectangle, Size, Subscription, Vector,
+ Alignment, Background, Color, Command, ContentFit, Font, Length, Padding,
+ Point, Rectangle, Size, Subscription, Vector,
};