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

Commit d01217c0 authored by Doris Ling's avatar Doris Ling
Browse files

Default fingerprint swipe to disabled.

If Settings.Secure.SYSTEM_NAVIGATION_KEYS_ENABLED is not set, default it
to 0 to diable fingerprint swipe.

Bug: 30416729
Change-Id: I292aa696216facc8eaefd1f4bd698f6e5708dc85
parent 7f37f269
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7306,7 +7306,7 @@ public class PhoneWindowManager implements WindowManagerPolicy {

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

    @Override