From: Evgen Servetnik Date: Tue, 17 Oct 2017 14:54:58 +0000 (+0300) Subject: TizenRefApp-9571 [Task Manager] "No recent apps" screen does not read by Screen reader X-Git-Tag: submit/tizen_4.0/20171018.095318 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Ftags%2Fsubmit%2Ftizen_4.0%2F20171018.095318;p=profile%2Fwearable%2Fapps%2Fnative%2Ftaskmanager.git TizenRefApp-9571 [Task Manager] "No recent apps" screen does not read by Screen reader Change-Id: Ie8aef5cb3a68fc41ac7fedec819b4a8fa67f3254 Signed-off-by: Evgen Servetnik --- diff --git a/src/App/src/MainLayout.cpp b/src/App/src/MainLayout.cpp index ce2d910..14ec1ce 100644 --- a/src/App/src/MainLayout.cpp +++ b/src/App/src/MainLayout.cpp @@ -59,6 +59,9 @@ void MainLayout::prepareNoContents() elm_object_part_text_set(m_pNoContent, "elm.text.title", msg("WDS_ST_OPT_RECENT_APPS_ABB").cStr()); elm_object_part_text_set(m_pNoContent, "elm.text", msg("IDS_AT_BODY_NO_RECENT_APPS").cStr()); setContent(m_pNoContent, "swl.bg"); + Atspi aoNonContent = elm_access_object_register((Evas_Object*)m_pNoContent, getEo()); + aoNonContent.setName(msg("IDS_AT_BODY_NO_RECENT_APPS")); + aoNonContent.setReadingInfo(ELM_ACCESSIBLE_READING_INFO_TYPE_NAME); } void MainLayout::showNoContents(bool show)