mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-23 17:47:17 +01:00
Ported: Fix null in android keyboard handling.
- jasonwinterpixel
31fe6848e8
This commit is contained in:
parent
9beaa6b80c
commit
35249df651
@ -126,7 +126,7 @@ public class PandemoniumTextInputWrapper implements TextWatcher, OnEditorActionL
|
||||
|
||||
@Override
|
||||
public boolean onEditorAction(final TextView pTextView, final int pActionID, final KeyEvent pKeyEvent) {
|
||||
if (this.mEdit == pTextView && this.isFullScreenEdit()) {
|
||||
if (this.mEdit == pTextView && this.isFullScreenEdit() && pKeyEvent != null) {
|
||||
final String characters = pKeyEvent.getCharacters();
|
||||
|
||||
for (int i = 0; i < characters.length(); i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user