mirror of
https://github.com/griffi-gh/hUI.git
synced 2025-04-02 22:16:29 -05:00
fix: frame position calc with padding
This commit is contained in:
parent
32d4df8b84
commit
2ed4de053b
|
@ -324,10 +324,7 @@ impl UiElement for Container {
|
|||
//After setting the inner_content_size, we can calculate the size of the container
|
||||
//Including padding, and in case the size is set to non-auto, override the size
|
||||
|
||||
total_size += vec2(
|
||||
padding_with_margin.sum_horizontal(),
|
||||
padding_with_margin.sum_vertical(),
|
||||
);
|
||||
total_size += padding_with_margin.sum_vec();
|
||||
|
||||
let computed_size = compute_size(ctx.layout, self.size, total_size);
|
||||
match self.size.width {
|
||||
|
@ -385,7 +382,7 @@ impl UiElement for Container {
|
|||
// }
|
||||
|
||||
let frame_position = ctx.layout.position + self.margin.top_left();
|
||||
let frame_size = ctx.measure.size - vec2(padding_with_margin.sum_horizontal(), padding_with_margin.sum_vertical());
|
||||
let frame_size = ctx.measure.size - self.margin.sum_vec();
|
||||
self.background_frame.draw(ctx.paint_target, (frame_position, frame_size).into());
|
||||
|
||||
//padding
|
||||
|
|
Loading…
Reference in a new issue