fix, incorrect check, default false means inactive
This commit is contained in:
parent
db99181fef
commit
1f1bf6ba40
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ diff --git a/content/public/android/java/src/org/chromium/content/browser/access
|
|||
return;
|
||||
}
|
||||
+ // Do not collect accessibility tree if disabled
|
||||
+ if (ContextUtils.getAppSharedPreferences().getBoolean("enable_accessibility", false)) {
|
||||
+ if (!ContextUtils.getAppSharedPreferences().getBoolean("enable_accessibility", false)) {
|
||||
+ structure.setChildCount(0);
|
||||
+ return;
|
||||
+ }
|
||||
|
|
Loading…
Add table
Reference in a new issue