aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-10-15 00:38:35 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-10-15 00:38:35 +0000
commit6d23337f6d022e7bcdc91f63a2d4f5edfc3d6590 (patch)
treeb0c304bf1ade1a080a243051899e0c86297c4a84 /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
parent946d7388c7afa8043379eb30176fbf848d74e926 (diff)
parent2da7336536a8e72f6e7d138d7b2580c077176345 (diff)
downloadlatinime-6d23337f6d022e7bcdc91f63a2d4f5edfc3d6590.tar.gz
latinime-6d23337f6d022e7bcdc91f63a2d4f5edfc3d6590.tar.xz
latinime-6d23337f6d022e7bcdc91f63a2d4f5edfc3d6590.zip
am 2da73365: am ae3ad8eb: (DO NOT MERGE) Fix checking a11y status just before calling an a11y method
* commit '2da7336536a8e72f6e7d138d7b2580c077176345': (DO NOT MERGE) Fix checking a11y status just before calling an a11y method
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java')
-rw-r--r--java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
index 33745a846..0fd5e139e 100644
--- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
+++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
@@ -408,8 +408,8 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick
// Decided to be in the sliding suggestion mode only when the touch point has been moved
// upward. Further {@link MotionEvent}s will be delivered to
// {@link #onTouchEvent(MotionEvent)}.
- mNeedsToTransformTouchEventToHoverEvent = AccessibilityUtils.getInstance()
- .isTouchExplorationEnabled();
+ mNeedsToTransformTouchEventToHoverEvent =
+ AccessibilityUtils.getInstance().isTouchExplorationEnabled();
mIsDispatchingHoverEventToMoreSuggestions = false;
return true;
}