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

Commit 7e07adbc authored by Gilles Debunne's avatar Gilles Debunne
Browse files

Fix for NPE on long press to start a selection on text.

Bug 6075849

Change-Id: Ie07bd2adfecc0820995b9c8a75cd4de6dd9891e1
parent 35ae6e2a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8222,7 +8222,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
        }

        // Start a new selection
        if (!handled) {
        if (!handled && mEditor != null) {
            vibrate = handled = startSelectionActionMode();
        }