From 2e42ad28cef7d57f759a489710d1f46016fbe3da Mon Sep 17 00:00:00 2001 From: Joogab Yun Date: Wed, 26 May 2021 11:22:31 +0900 Subject: [PATCH] Add ACCESSIBILITY_HIGHLIGHTABLE for ATSPI Change-Id: Iff574b2342ac6a1d55d5618eee24119c7475b6b0 --- dali-toolkit/internal/controls/video-view/video-view-impl.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dali-toolkit/internal/controls/video-view/video-view-impl.cpp b/dali-toolkit/internal/controls/video-view/video-view-impl.cpp index 509426e..181a47e 100644 --- a/dali-toolkit/internal/controls/video-view/video-view-impl.cpp +++ b/dali-toolkit/internal/controls/video-view/video-view-impl.cpp @@ -21,13 +21,13 @@ // EXTERNAL INCLUDES #include #include +#include #include #include #include #include #include #include -#include #include // INTERNAL INCLUDES @@ -123,6 +123,9 @@ void VideoView::OnInitialize() new DevelControl::AccessibleImpl(actor, Dali::Accessibility::Role::VIDEO)); }); + //Enable highightability + Self().SetProperty(Toolkit::DevelControl::Property::ACCESSIBILITY_HIGHLIGHTABLE, true); + //update self property self.RegisterProperty(IS_VIDEO_VIEW_PROPERTY_NAME, true, Property::READ_WRITE); } -- 2.7.4