Skip to content

Commit

Permalink
Merge pull request #36 from KunalDhyani/patch-1
Browse files Browse the repository at this point in the history
Correction in README.md
  • Loading branch information
poovamraj authored Aug 2, 2020
2 parents ccc13fb + 78a4de6 commit 8097514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ linePinField.setOnTextCompleteListener(new PinField.OnTextCompleteListener() {
@Override
public boolean onTextComplete (@NotNull String enteredText) {
Toast.makeText(MainActivity.this,enteredText,Toast.LENGTH_SHORT).show();
return true; // Return true to keep the keyboard open else return false to close the keyboard
return true; // Return false to keep the keyboard open else return true to close the keyboard
}
});
```
Expand Down

0 comments on commit 8097514

Please sign in to comment.