Fix Loading sizeproperty not work (#1797)
authorzg2nets <40655877+zg2nets@users.noreply.github.com>
Fri, 3 Jul 2020 09:08:43 +0000 (18:08 +0900)
committerGitHub <noreply@github.com>
Fri, 3 Jul 2020 09:08:43 +0000 (18:08 +0900)
src/Tizen.NUI.Components/Controls/Loading.cs

index 6de551c..4848cbf 100755 (executable)
@@ -52,7 +52,7 @@ namespace Tizen.NUI.Components
             if (newValue != null)
             {
                 Size size = (Size)newValue;
-                ((View)bindable).Size = size;
+                ((View)bindable).ViewStyle.Size = size;
                 if (null != instance.imageVisual)
                 {
                     instance.imageVisual.Size = new Size2D((int)size.Width, (int)size.Height);