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

Commit 13eaaea8 authored by Selim Cinek's avatar Selim Cinek Committed by android-build-merger
Browse files

Merge "Fixed that volume buttons were not working on the pin input" into nyc-dev am: 8e2a2fa9

am: 01c59fc0

* commit '01c59fc0':
  Fixed that volume buttons were not working on the pin input

Change-Id: I336e32276d219fe0205a934de4533dba1d5cba2d
parents f96c5fd4 01c59fc0
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;
    }