diff options
| author | 2019-11-11 05:37:51 +0100 | |
|---|---|---|
| committer | 2019-11-11 05:37:51 +0100 | |
| commit | d4d14b68f47e9527554a728ebbba9b840832626a (patch) | |
| tree | c37dc77445e96d39b119aa1cadb46fa738743795 /core | |
| parent | ceb02f4a36769c488c2525db2fb73f092a6c2706 (diff) | |
| download | iced-d4d14b68f47e9527554a728ebbba9b840832626a.tar.gz iced-d4d14b68f47e9527554a728ebbba9b840832626a.tar.bz2 iced-d4d14b68f47e9527554a728ebbba9b840832626a.zip | |
Remove `padding` from `Container` for now
Diffstat (limited to '')
| -rw-r--r-- | core/src/widget/container.rs | 10 | 
1 files changed, 0 insertions, 10 deletions
| diff --git a/core/src/widget/container.rs b/core/src/widget/container.rs index dc1aab08..9bc92fe0 100644 --- a/core/src/widget/container.rs +++ b/core/src/widget/container.rs @@ -8,7 +8,6 @@ pub struct Container<Element> {      pub height: Length,      pub max_width: u32,      pub max_height: u32, -    pub padding: u16,      pub horizontal_alignment: Align,      pub vertical_alignment: Align,      pub content: Element, @@ -29,7 +28,6 @@ impl<Element> Container<Element> {              max_height: u32::MAX,              horizontal_alignment: Align::Start,              vertical_alignment: Align::Start, -            padding: 0,              content: content.into(),          }      } @@ -66,14 +64,6 @@ impl<Element> Container<Element> {          self      } -    /// Sets the padding of the [`Container`]. -    /// -    /// [`Container`]: struct.Container.html -    pub fn padding(mut self, units: u16) -> Self { -        self.padding = units; -        self -    } -      /// Centers the contents in the horizontal axis of the [`Container`].      ///      /// [`Container`]: struct.Container.html | 
