diff options
author | Adam Powell <adamp@google.com> | 2011-09-14 17:33:50 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-09-14 17:33:50 -0700 |
commit | c4dd8fe1e887c1a20a595de6105cefb110578e85 (patch) | |
tree | f43e694c5f601dc68a7868c6cee055243de7048d /policy | |
parent | ae812c8cd4a833a2820c4796ac6f7574f331b9a6 (diff) | |
parent | e71ffeb7e0eaa181130aaaad18a94ef3ab73ecb1 (diff) | |
download | frameworks_base-c4dd8fe1e887c1a20a595de6105cefb110578e85.zip frameworks_base-c4dd8fe1e887c1a20a595de6105cefb110578e85.tar.gz frameworks_base-c4dd8fe1e887c1a20a595de6105cefb110578e85.tar.bz2 |
am e71ffeb7: Merge "Fix bug 5237737 - ActionBar should fire an accessibility event when action mode is turned on/off"
* commit 'e71ffeb7e0eaa181130aaaad18a94ef3ab73ecb1':
Fix bug 5237737 - ActionBar should fire an accessibility event when action mode is turned on/off
Diffstat (limited to 'policy')
-rw-r--r-- | policy/src/com/android/internal/policy/impl/PhoneWindow.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/policy/src/com/android/internal/policy/impl/PhoneWindow.java b/policy/src/com/android/internal/policy/impl/PhoneWindow.java index 20088b1..903b405 100644 --- a/policy/src/com/android/internal/policy/impl/PhoneWindow.java +++ b/policy/src/com/android/internal/policy/impl/PhoneWindow.java @@ -2171,6 +2171,8 @@ public class PhoneWindow extends Window implements MenuBuilder.Callback { if (mActionModePopup != null) { post(mShowActionModePopup); } + mActionModeView.sendAccessibilityEvent( + AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED); } else { mActionMode = null; } |