Merge "[AT-SPI] Remove State::SENSITIVE from ApplicationAccessible" into devel/master
authorLukasz Oleksak <l.oleksak@samsung.com>
Fri, 12 May 2023 09:51:16 +0000 (09:51 +0000)
committerGerrit Code Review <gerrit@review>
Fri, 12 May 2023 09:51:16 +0000 (09:51 +0000)
dali/internal/accessibility/bridge/bridge-base.h

index 4b5d815..81a6dfb 100644 (file)
@@ -109,6 +109,9 @@ public:
       result = result | child->GetStates();
     }
 
+    // The Application object should never have the SENSITIVE state
+    result[Dali::Accessibility::State::SENSITIVE] = false;
+
     return result;
   }