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

Commit 3f9d647d authored by Hyunyoung Song's avatar Hyunyoung Song
Browse files

Fix ExtendedEditText not handling touch correctly

b/31555902

Change-Id: Ife23cf6af29ac47315aee4abc0ffe2dbcde352f9
parent 80e6aa4b
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -40,11 +40,13 @@ public class ExtendedEditText extends EditText {
    private OnBackKeyListener mBackKeyListener;

    public ExtendedEditText(Context context) {
        this(context, null, 0);
        // ctor chaining breaks the touch handling
        super(context);
    }

    public ExtendedEditText(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
        // ctor chaining breaks the touch handling
        super(context, attrs);
    }

    public ExtendedEditText(Context context, AttributeSet attrs, int defStyleAttr) {