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

Commit 470bf5ec authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed that volume buttons were not working on the pin input

Because we were intercepting all buttons.

Change-Id: Id2155f23d55cb5282c87409b9c6b8441540ad894
Fixes: 28786740
parent ed6913b0
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -239,8 +239,7 @@ public abstract class KeyguardPinBasedInputView extends KeyguardAbsKeyInputView
    @Override
    public boolean onKey(View v, int keyCode, KeyEvent event) {
        if (event.getAction() == KeyEvent.ACTION_DOWN) {
            onKeyDown(keyCode, event);
            return true;
            return onKeyDown(keyCode, event);
        }
        return false;
    }