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

automerge: b97b519

* commit 'b97b519808719857232e1b82a6cfd0827db4ed0c':
  SysUI: Don't drop HUN notification when clicked
This commit is contained in:
Christoph Studer
2015-01-23 17:07:39 +00:00
committed by android-build-merger

View File

@@ -1546,7 +1546,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