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

Commit 76096e72 authored by Kevin Chyn's avatar Kevin Chyn
Browse files

Default-off FP Swipe

Fixes: 63992836

Test: adb shell settings delete secure system_navigation_keys_enabled
&& make -j RunSettingsRoboTests

Change-Id: I6632c7244749b3b98227cb4392438ab861f3f815
parent f5c39226
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7689,7 +7689,7 @@ public class PhoneWindowManager implements WindowManagerPolicy {

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

    @Override