From: Joogab Yun Date: Wed, 26 May 2021 02:22:31 +0000 (+0900) Subject: Add ACCESSIBILITY_HIGHLIGHTABLE for ATSPI X-Git-Tag: dali_2.0.28~4 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=commitdiff_plain;h=2e42ad28cef7d57f759a489710d1f46016fbe3da;hp=3cc49ee528659b670f46b43be6a9de552f282724 Add ACCESSIBILITY_HIGHLIGHTABLE for ATSPI Change-Id: Iff574b2342ac6a1d55d5618eee24119c7475b6b0 --- 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); }