mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Fix ExtendedEditText not handling touch correctly
b/31555902 Change-Id: Ife23cf6af29ac47315aee4abc0ffe2dbcde352f9
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user