[NUI] Support null URL path. 50/158750/1
authorhuiyu,eun <huiyu.eun@samsung.com>
Thu, 26 Oct 2017 10:51:58 +0000 (19:51 +0900)
committerhuiyu,eun <huiyu.eun@samsung.com>
Fri, 3 Nov 2017 01:11:45 +0000 (10:11 +0900)
support null URL path.

Change-Id: I95f7d680a11b5f97b640628a26b195ac32e42e69
Signed-off-by: huiyu,eun <huiyu.eun@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/ImageView.cs

index 3c6bc92..635fb13 100755 (executable)
@@ -259,7 +259,7 @@ namespace Tizen.NUI.BaseComponents
             }
             set
             {
-                _url = value;
+                _url = (value == null? "" : value);
                 UpdateImage();
             }
         }
@@ -454,4 +454,4 @@ namespace Tizen.NUI.BaseComponents
 
     }
 
-}
\ No newline at end of file
+}