Disable Accessibility in Tizen 79/146679/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 30 Aug 2017 04:40:31 +0000 (13:40 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 30 Aug 2017 04:41:05 +0000 (13:41 +0900)
- Make Accessibility disabled temporarily in Tizen platform

Change-Id: I52ccc0178a5f311afbeae5a3977cbf5dfd91fdfa
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
adaptors/tizen/accessibility-adaptor-impl-tizen.cpp

index 65ba859..dd0f61f 100644 (file)
@@ -42,14 +42,15 @@ namespace
 
 const char * DALI_VCONFKEY_SETAPPL_ACCESSIBILITY_DBUS_TTS = "db/setting/accessibility/atspi";
 
+// Disabled Accessibility temporarily in Tizen platform
 bool GetEnabledVConf()
 {
   int isEnabled = 0;
-  vconf_get_bool( DALI_VCONFKEY_SETAPPL_ACCESSIBILITY_DBUS_TTS, &isEnabled );
+  //vconf_get_bool( DALI_VCONFKEY_SETAPPL_ACCESSIBILITY_DBUS_TTS, &isEnabled );
 
   if( isEnabled == 0 )
   {
-    vconf_get_bool( VCONFKEY_SETAPPL_ACCESSIBILITY_TTS, &isEnabled );
+    //vconf_get_bool( VCONFKEY_SETAPPL_ACCESSIBILITY_TTS, &isEnabled );
   }
 
   return static_cast<bool>(isEnabled);