[NUI] Fix SizeWidth/Height issue (#555)
authorhuiyueun <35286162+huiyueun@users.noreply.github.com>
Fri, 16 Nov 2018 06:39:10 +0000 (15:39 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Fri, 16 Nov 2018 06:39:10 +0000 (15:39 +0900)
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/View.cs

index 69f25c6..546f251 100755 (executable)
@@ -4628,6 +4628,7 @@ namespace Tizen.NUI.BaseComponents
             set
             {
                 SetValue(SizeWidthProperty, value);
+                SetProperty(LayoutItemWrapper.ChildProperty.WIDTH_SPECIFICATION, new Tizen.NUI.PropertyValue(value));
                 NotifyPropertyChanged();
             }
         }
@@ -4645,6 +4646,7 @@ namespace Tizen.NUI.BaseComponents
             set
             {
                 SetValue(SizeHeightProperty, value);
+                SetProperty(LayoutItemWrapper.ChildProperty.HEIGHT_SPECIFICATION, new Tizen.NUI.PropertyValue(value));
                 NotifyPropertyChanged();
             }
         }