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

This commit is contained in:
TreeHugger Robot
2016-06-02 15:41:19 +00:00
committed by Android (Google) Code Review

View File

@@ -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;
}