Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 517a3e07 authored by Phil Weaver's avatar Phil Weaver
Browse files

Fix ACCESSIBILITY_ENABLED settings.

A typo meant that the setting reflected the exact opposite of what was
intended.

Bug: 27781201
Change-Id: Icb0d4d585399f147b319093be57d708af4c6dfdc
parent 36a20cdd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1544,7 +1544,7 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub {
        try {
            Settings.Secure.putIntForUser(mContext.getContentResolver(),
                    Settings.Secure.ACCESSIBILITY_ENABLED,
                    userState.isHandlingAccessibilityEvents() ? 0 : 1,
                    userState.isHandlingAccessibilityEvents() ? 1 : 0,
                    userState.mUserId);
        } finally {
            Binder.restoreCallingIdentity(identity);