diff options
author | 2014-09-25 14:14:26 +0000 | |
---|---|---|
committer | 2014-09-25 14:14:28 +0000 | |
commit | f99cce8615bca1ea0190ac4f5d65ee35644dd504 (patch) | |
tree | cf39f7c777d8b230401ff40cb5a89c50454f3dc2 /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | aaefd5666112c4a6fff58783c25cf9a75b468edd (diff) | |
parent | 04cd8794e04b14c2b7e7eed036b83075792134a1 (diff) | |
download | latinime-f99cce8615bca1ea0190ac4f5d65ee35644dd504.tar.gz latinime-f99cce8615bca1ea0190ac4f5d65ee35644dd504.tar.xz latinime-f99cce8615bca1ea0190ac4f5d65ee35644dd504.zip |
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.java | 4 |
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 43f6175ca..b421a7eb5 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java @@ -418,8 +418,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; } |