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

Commit f7ae5258 authored by Gilles Debunne's avatar Gilles Debunne
Browse files

SelectAllOnFocus text fields do not display the insertion handle when focused.

Change-Id: Ieb0dfe37498a339a781098134f4a0dd7f40193ec
parent e5c16ab5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -7103,7 +7103,8 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
                    }

                    stopSelectionActionMode();
                    if (hasInsertionController()) {
                    boolean selectAllGotFocus = mSelectAllOnFocus && mTouchFocusSelected;
                    if (hasInsertionController() && !selectAllGotFocus) {
                        getInsertionController().show();
                    }
                }