[NUI] Fix itemslayouter nullable value checking. (#3236)
authorSangHyeon Jade Lee <sh10233.lee@samsung.com>
Mon, 28 Jun 2021 06:10:38 +0000 (15:10 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Tue, 29 Jun 2021 06:46:52 +0000 (15:46 +0900)
src/Tizen.NUI.Components/Controls/RecyclerView/Layouter/ItemsLayouter.cs

index 00964cc..3339649 100755 (executable)
@@ -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;
             }