Merge "Fix ExtendedEditText not handling touch correctly b/31555902" into ub-launcher3-calgary-polish
This commit is contained in:
commit
13c14c8f8c
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue