[NUI][1.2.67] fix Image property URL update issue 85/161785/1
authordongsug.song <dongsug.song@samsung.com>
Mon, 13 Nov 2017 09:03:46 +0000 (18:03 +0900)
committerhuiyu,eun <huiyu.eun@samsung.com>
Mon, 27 Nov 2017 10:19:47 +0000 (19:19 +0900)
Change-Id: Id2dbdc11923a360832122f9567303db7911f889f
Signed-off-by: dongsug.song <dongsug.song@samsung.com>
Signed-off-by: huiyu,eun <huiyu.eun@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/ImageView.cs

index c07d3fd..cf3ceba 100755 (executable)
@@ -294,6 +294,7 @@ namespace Tizen.NUI.BaseComponents
             {
                 if (_border == null)
                 {
+                    if (_url != null) { value.Add("url", new PropertyValue(_url)); }
                     SetProperty(ImageView.Property.IMAGE, new Tizen.NUI.PropertyValue(value));
                 }
             }
@@ -322,6 +323,7 @@ namespace Tizen.NUI.BaseComponents
             {
                 if (_border == null)
                 {
+                    if(_url != null) { value.Add("url", new PropertyValue(_url)); }
                     SetProperty(ImageView.Property.IMAGE, new Tizen.NUI.PropertyValue(value));
                 }
             }