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

Commit 5cc86805 authored by Doris Ling's avatar Doris Ling Committed by android-build-merger
Browse files

Fix fingerprint swipe gesture settings for secondary users.

am: 34331b7c

Change-Id: I42ab349b7fa5dfd789a5dcabb3aebf88683421f6
parents 6c682c59 34331b7c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7391,8 +7391,8 @@ public class PhoneWindowManager implements WindowManagerPolicy {
    }

    private boolean areSystemNavigationKeysEnabled() {
        return Settings.Secure.getInt(mContext.getContentResolver(),
                Settings.Secure.SYSTEM_NAVIGATION_KEYS_ENABLED, 0) == 1;
        return Settings.Secure.getIntForUser(mContext.getContentResolver(),
                Settings.Secure.SYSTEM_NAVIGATION_KEYS_ENABLED, 0, UserHandle.USER_CURRENT) == 1;
    }

    @Override