diff options
author | 2014-09-25 14:21:58 +0000 | |
---|---|---|
committer | 2014-09-25 14:21:58 +0000 | |
commit | 4806a94630e94fc416e2af5399e5d092d4e1bfe9 (patch) | |
tree | ae7870852512d3de0561ef47a5a1f394973c87a1 /java/src/com/android/inputmethod/latin | |
parent | 4d51efce03773c08feac1e47f6e9f2ce3990f9bc (diff) | |
parent | f99cce8615bca1ea0190ac4f5d65ee35644dd504 (diff) | |
download | latinime-4806a94630e94fc416e2af5399e5d092d4e1bfe9.tar.gz latinime-4806a94630e94fc416e2af5399e5d092d4e1bfe9.tar.xz latinime-4806a94630e94fc416e2af5399e5d092d4e1bfe9.zip |
am f99cce86: Merge "Fix checking a11y status just before calling an a11y method"
* commit 'f99cce8615bca1ea0190ac4f5d65ee35644dd504':
Fix checking a11y status just before calling an a11y method
Diffstat (limited to 'java/src/com/android/inputmethod/latin')
-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; } |