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

Commit d849f546 authored by Victoria Lease's avatar Victoria Lease
Browse files

check for null mEditor in TextView.canCopy()

canSelectText(), canCut(), and canPaste() do it, too!
canCopy() wants to be cool like them!

Bug: 11388122
Change-Id: I8595effbff269c05ac3f763419298970045ba054
parent a6198d37
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8481,7 +8481,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
            return false;
        }

        if (mText.length() > 0 && hasSelection()) {
        if (mText.length() > 0 && hasSelection() && mEditor != null) {
            return true;
        }