am 73500edb: Merge "SysUI: Don\'t drop HUN notification when clicked" into lmp-mr1-dev

* commit '73500edb42d9270437e41ff2ddaa0cd6eacb422b':
  SysUI: Don't drop HUN notification when clicked
This commit is contained in:
Christoph Studer
2015-01-23 16:55:31 +00:00
committed by Android Git Automerger

View File

@@ -1549,7 +1549,11 @@ public abstract class BaseStatusBar extends SystemUI implements
dismissKeyguardThenExecute(new OnDismissAction() {
public boolean onDismiss() {
if (mIsHeadsUp) {
mHeadsUpNotificationView.clear();
// Release the HUN notification to the shade.
//
// In most cases, when FLAG_AUTO_CANCEL is set, the notification will
// become canceled shortly by NoMan, but we can't assume that.
mHeadsUpNotificationView.releaseAndClose();
}
new Thread() {
@Override