From 2ad70f8bb910a139630099ceb868606c995456da Mon Sep 17 00:00:00 2001 From: SangHyeon Jade Lee Date: Mon, 28 Jun 2021 15:10:38 +0900 Subject: [PATCH] [NUI] Fix itemslayouter nullable value checking. (#3236) --- .../Controls/RecyclerView/Layouter/ItemsLayouter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tizen.NUI.Components/Controls/RecyclerView/Layouter/ItemsLayouter.cs b/src/Tizen.NUI.Components/Controls/RecyclerView/Layouter/ItemsLayouter.cs index 00964cc..3339649 100755 --- a/src/Tizen.NUI.Components/Controls/RecyclerView/Layouter/ItemsLayouter.cs +++ b/src/Tizen.NUI.Components/Controls/RecyclerView/Layouter/ItemsLayouter.cs @@ -164,7 +164,7 @@ namespace Tizen.NUI.Components } if (Container) { - Container.Size = ItemsView.Size; + if (ItemsView != null) Container.Size = ItemsView.Size; Container.Position = new Position(0.0f, 0.0f); Container = null; } -- 2.7.4