From 6ede0dce135d12caea59e8259806371a2c90ae77 Mon Sep 17 00:00:00 2001 From: Jaehyun Cho <29364140+jaehyun0cho@users.noreply.github.com> Date: Fri, 12 Mar 2021 11:41:25 +0900 Subject: [PATCH] [NUI] Set Navigator Layout (#2727) To calculate its children (i.e. Page) size correctly, Navigator sets AbsoluteLayout to its Layout. Co-authored-by: Jaehyun Cho --- src/Tizen.NUI.Components/Controls/Navigation/Navigator.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Tizen.NUI.Components/Controls/Navigation/Navigator.cs b/src/Tizen.NUI.Components/Controls/Navigation/Navigator.cs index b79addcc6..b5e71586a 100755 --- a/src/Tizen.NUI.Components/Controls/Navigation/Navigator.cs +++ b/src/Tizen.NUI.Components/Controls/Navigation/Navigator.cs @@ -49,6 +49,7 @@ namespace Tizen.NUI.Components [EditorBrowsable(EditorBrowsableState.Never)] public Navigator() : base() { + Layout = new AbsoluteLayout(); } /// -- 2.34.1