[NUI] Fix AbsoluteLayout typo in calculating Padding size
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Wed, 26 Mar 2025 02:09:49 +0000 (11:09 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Thu, 27 Mar 2025 00:43:29 +0000 (09:43 +0900)
Typo of padding top + end is fixed to top + bottom.

src/Tizen.NUI/src/public/Layouting/AbsoluteLayout.cs

index ca12c4227ac9f081fbd2d3951166ebefebb65e01..c1e2867dbc327c7d122958c3c54c834d6f21e0db 100755 (executable)
@@ -214,7 +214,7 @@ namespace Tizen.NUI
                             new MeasureSpecification(
                                 new LayoutLength(heightMeasureSpec.Size) - (childMargin.Top + childMargin.Bottom),
                                 heightMeasureSpec.Mode),
-                            new LayoutLength(Padding.Top + Padding.End),
+                            new LayoutLength(Padding.Top + Padding.Bottom),
                             new LayoutLength(CalculateChildSpecSizeHeight(childLayout.Owner)));
                     }