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

Commit f7f707e5 authored by Justin Ghan's avatar Justin Ghan Committed by Android (Google) Code Review
Browse files

Merge "Suppress scrolling when handwriting initiator requests focus"

parents 0044ab53 92c48e3e
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -162,7 +162,13 @@ public class HandwritingInitiator {
                        if (candidateView == getConnectedView()) {
                            startHandwriting(candidateView);
                        } else {
                            if (candidateView.getRevealOnFocusHint()) {
                                candidateView.setRevealOnFocusHint(false);
                                candidateView.requestFocus();
                                candidateView.setRevealOnFocusHint(true);
                            } else {
                                candidateView.requestFocus();
                            }
                        }
                    }
                }