Fix GetCurrentProperty issue 89/283989/1
authorEunki, Hong <eunkiki.hong@samsung.com>
Tue, 8 Nov 2022 06:59:38 +0000 (15:59 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Tue, 8 Nov 2022 06:59:38 +0000 (15:59 +0900)
Change-Id: I7f2ef947bb379f720ee76a80d3261a58ab3bf56d
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali-csharp-binder/src/internal-property-get-set-wrap.cpp

index c5a72ce..0e8c32a 100755 (executable)
@@ -520,7 +520,7 @@ extern "C"
     try
     {
       Dali::Vector3 result;
-      result = ((Dali::Actor const *)pActor)->GetProperty<Dali::Vector3>((Dali::Property::Index)propertyType);
+      result = ((Dali::Actor const *)pActor)->GetCurrentProperty<Dali::Vector3>((Dali::Property::Index)propertyType);
       pVector2->x = result.x;
       pVector2->y = result.y;
     }