From 4931a2da2b17cc15e06e14f9fccdb052843afb95 Mon Sep 17 00:00:00 2001 From: YeongJong Lee Date: Mon, 22 Jun 2020 14:38:05 +0900 Subject: [PATCH] [NUI] fix c&p error (#1721) Co-authored-by: Yeongjong Lee --- src/Tizen.NUI.Components/Controls/ScrollableBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs index 1d1b86c..aa44760 100755 --- a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs +++ b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs @@ -88,7 +88,7 @@ namespace Tizen.NUI.Components { childWidthState = MeasuredSize.StateType.MeasuredSizeTooSmall; } - if (childLayout.MeasuredWidth.State == MeasuredSize.StateType.MeasuredSizeTooSmall) + if (childLayout.MeasuredHeight.State == MeasuredSize.StateType.MeasuredSizeTooSmall) { childHeightState = MeasuredSize.StateType.MeasuredSizeTooSmall; } -- 2.7.4