diff options
Diffstat (limited to 'native/src/layout/node.rs')
-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; + } } } } |