diff options
author | 2019-11-11 05:37:51 +0100 | |
---|---|---|
committer | 2019-11-11 05:37:51 +0100 | |
commit | d4d14b68f47e9527554a728ebbba9b840832626a (patch) | |
tree | c37dc77445e96d39b119aa1cadb46fa738743795 /native/src/layout | |
parent | ceb02f4a36769c488c2525db2fb73f092a6c2706 (diff) | |
download | iced-d4d14b68f47e9527554a728ebbba9b840832626a.tar.gz iced-d4d14b68f47e9527554a728ebbba9b840832626a.tar.bz2 iced-d4d14b68f47e9527554a728ebbba9b840832626a.zip |
Remove `padding` from `Container` for now
Diffstat (limited to 'native/src/layout')
-rw-r--r-- | native/src/layout/node.rs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/native/src/layout/node.rs b/native/src/layout/node.rs index 9d8ad57d..64ebf2d0 100644 --- a/native/src/layout/node.rs +++ b/native/src/layout/node.rs @@ -46,7 +46,9 @@ impl Node { Align::Center => { self.bounds.x += (space.width - self.bounds.width) / 2.0; } - Align::End => {} + Align::End => { + self.bounds.x += space.width - self.bounds.width; + } } match vertical_alignment { @@ -54,7 +56,9 @@ impl Node { Align::Center => { self.bounds.y += (space.height - self.bounds.height) / 2.0; } - Align::End => {} + Align::End => { + self.bounds.y += space.height - self.bounds.height; + } } } } |