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

Commit e218baa6 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix NPE

Change-Id: I35efd1d6c8c2b48d93675d014d5c7aef7d12ed58
parent 56a6c8dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -615,7 +615,7 @@ public class PointerTracker {
    // The modifier key, such as shift key, should not show its key preview.
    private boolean isKeyPreviewNotRequired(int keyIndex) {
        final Key key = getKey(keyIndex);
        if (!key.mEnabled)
        if (key == null || !key.mEnabled)
            return true;
        // Such as spacebar sliding language switch.
        if (mKeyboard.needSpacebarPreview(keyIndex))