summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHyunyoung Song <hyunyoungs@google.com>2016-09-20 21:10:34 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-09-20 21:10:35 +0000
commit13c14c8f8c16bc8b7ba337ad184039d137f4320d (patch)
tree931487b381fe5a4c671b3239bc20ee1789bb615e
parent41253866876bc3cbb7d52cd0f28063cea7aca59d (diff)
parent3f9d647de6aa60aea81644c59ea967c4c89e757e (diff)
downloadandroid_packages_apps_Trebuchet-13c14c8f8c16bc8b7ba337ad184039d137f4320d.tar.gz
android_packages_apps_Trebuchet-13c14c8f8c16bc8b7ba337ad184039d137f4320d.tar.bz2
android_packages_apps_Trebuchet-13c14c8f8c16bc8b7ba337ad184039d137f4320d.zip
Merge "Fix ExtendedEditText not handling touch correctly b/31555902" into ub-launcher3-calgary-polish
-rw-r--r--src/com/android/launcher3/ExtendedEditText.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/com/android/launcher3/ExtendedEditText.java b/src/com/android/launcher3/ExtendedEditText.java
index f7737f423..0caab0911 100644
--- a/src/com/android/launcher3/ExtendedEditText.java
+++ b/src/com/android/launcher3/ExtendedEditText.java
@@ -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) {