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

Commit fac110dc authored by Leon Scroggins's avatar Leon Scroggins Committed by Android Git Automerger
Browse files

am 853a4240: am 63284ede: Do not check mWebTextView\'s focus state to determine editing mode.

Merge commit '853a4240' into kraken

* commit '853a4240':
  Do not check mWebTextView's focus state to determine editing mode.
parents 926d9a89 853a4240
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1722,8 +1722,7 @@ public class WebView extends AbsoluteLayout
     *  Return true if the browser is displaying a TextView for text input.
     */
    private boolean inEditingMode() {
        return mWebTextView != null && mWebTextView.getParent() != null
                && mWebTextView.hasFocus();
        return mWebTextView != null && mWebTextView.getParent() != null;
    }

    /**