[NUI] Fix to restore setter of AnimatedImageView.ResourceUrl
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Fri, 4 Dec 2020 04:38:27 +0000 (13:38 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Tue, 15 Dec 2020 06:33:59 +0000 (15:33 +0900)
The setter of AnimatedImageView.ResourceUrl was removed incorrectly by
PR #2232.
To fix the above issue, the setter of AnimatedImageView.ResourceUrl is
restored.

src/Tizen.NUI/src/public/BaseComponents/AnimatedImageView.cs

index a9c0354..db53ca4 100755 (executable)
@@ -74,6 +74,11 @@ namespace Tizen.NUI.BaseComponents
             {
                 return mUrl;
             }
+            set
+            {
+                mDirtyFlag = true;
+                mUrl = value;
+            }
         }
 
         /// <summary>