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

Commit b86b1027 authored by Jeff Brown's avatar Jeff Brown Committed by Android Git Automerger
Browse files

am 9777fdb7: am b0a7f84b: am 63bf04d8: Merge "Fix NullException in QwertyKeyListener.KeyDown"

* commit '9777fdb7':
  Fix NullException in QwertyKeyListener.KeyDown
parents 15f3e288 9777fdb7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ public class QwertyKeyListener extends BaseKeyListener {
            if (count > 0 && selStart == selEnd && selStart > 0) {
                char c = content.charAt(selStart - 1);

                if (c == i || c == Character.toUpperCase(i) && view != null) {
                if ((c == i || c == Character.toUpperCase(i)) && view != null) {
                    if (showCharacterPicker(view, content, c, false, count)) {
                        resetMetaState(content);
                        return true;