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

Commit da3d7d8d authored by LuK1337's avatar LuK1337 Committed by Łukasz Patron
Browse files

SystemUI: Fix default mShowCursorKeys value (again)

Change-Id: I2d460e7c448ce31322c630889c7055390b111ee5
parent 14f8a0a8
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1114,7 +1114,7 @@ public class NavigationBarView extends FrameLayout implements
    @Override
    @Override
    public void onTuningChanged(String key, String newValue) {
    public void onTuningChanged(String key, String newValue) {
        if (NAVIGATION_BAR_MENU_ARROW_KEYS.equals(key)) {
        if (NAVIGATION_BAR_MENU_ARROW_KEYS.equals(key)) {
            mShowCursorKeys = newValue == null || Integer.parseInt(newValue) == 1;
            mShowCursorKeys = newValue != null && Integer.parseInt(newValue) != 0;
            setNavigationIconHints(mNavigationIconHints);
            setNavigationIconHints(mNavigationIconHints);
        }
        }
    }
    }