[Tizen] Fix the build error 76/258376/1 accepted/tizen/6.0/unified/20210517.132246 submit/tizen_6.0/20210517.063916
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Fri, 14 May 2021 07:59:16 +0000 (16:59 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Fri, 14 May 2021 07:59:57 +0000 (16:59 +0900)
- The method name of dali-adaptor was incorrect.
 Fixed the right one.

Change-Id: I8e809df9e5444b69967c9e5c0b86c901716a718d
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
dali-toolkit/internal/accessibility-manager/accessibility-manager-impl.cpp

index faab637..a1b10d7 100644 (file)
@@ -363,7 +363,7 @@ bool AccessibilityManager::DoSetCurrentFocusActor(const unsigned int actorID)
       // Send Focused actor information
       Vector2 windowSize = rootActor.GetCurrentProperty<Vector2>(Actor::Property::SIZE);
       AccessibilityAdaptor adaptor = AccessibilityAdaptor::Get();
-      adaptor.SetFocusActorPosition( Vector2((actor.GetCurrentProperty<Vector3>(Actor::Property::WORLD_POSITION).x + (windowSize.width / 2)),
+      adaptor.SetFocusedActorPosition( Vector2((actor.GetCurrentProperty<Vector3>(Actor::Property::WORLD_POSITION).x + (windowSize.width / 2)),
                                              (actor.GetCurrentProperty<Vector3>(Actor::Property::WORLD_POSITION).y + (windowSize.height / 2))) );
 
       // Send notification for the change of focus actor