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

Commit fc5efaea authored by Doris Ling's avatar Doris Ling Committed by Android (Google) Code Review
Browse files

Merge "Fix fingerprint swipe gesture settings for secondary users." into nyc-mr1-dev

parents d4a95806 34331b7c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7319,8 +7319,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