commit | 33551ffea822cb02d1ad88f5a33e046e98eca43f | [log] [tgz] |
---|---|---|
author | Sagar Dhawan <sdhawan@codeaurora.org> | Wed Jul 08 17:24:44 2015 -0700 |
committer | jrizzoli <joey@cyanogenmoditalia.it> | Fri Aug 28 13:15:45 2015 +0200 |
tree | e144564b67c74da90262bcf17ba6e929c4945971 | |
parent | 5e016c66c673c78e040157f4b691082d180f77e5 [diff] [blame] |
Disable Edge Navigation when Keyboard is showing Change-Id: I4580a3e307c42bed7d163f9c4a25bda91d910106
diff --git a/src/com/android/browser/EdgeSwipeController.java b/src/com/android/browser/EdgeSwipeController.java index 87ad2e7..fe991e8 100644 --- a/src/com/android/browser/EdgeSwipeController.java +++ b/src/com/android/browser/EdgeSwipeController.java
@@ -459,7 +459,7 @@ public void onEdgeTouched (int edgeFlags, int pointerId) { synchronized (this) { - if (mActiveTab.isPrivateBrowsingEnabled()) { + if (mActiveTab.isPrivateBrowsingEnabled() || mActiveTab.isKeyboardShowing()) { mDragHelper.abort(); return; }