diff options
author | Adrian Roos <roosa@google.com> | 2015-09-11 17:46:23 -0700 |
---|---|---|
committer | Adrian Roos <roosa@google.com> | 2015-09-15 19:34:06 +0000 |
commit | f89e800efccb0c96f6ce980ae6c4d3a325be8e3b (patch) | |
tree | 3dce1b7c7a9625b16631e623ff14c4e3df26adf0 /packages/SystemUI/src/com/android/systemui/qs/tiles | |
parent | cd946024e94a8fe2f4009dbd2e5463817a17b3a9 (diff) | |
download | frameworks_base-f89e800efccb0c96f6ce980ae6c4d3a325be8e3b.zip frameworks_base-f89e800efccb0c96f6ce980ae6c4d3a325be8e3b.tar.gz frameworks_base-f89e800efccb0c96f6ce980ae6c4d3a325be8e3b.tar.bz2 |
Send next alarm's show intent via PendingIntent
Also send all IntentTile intents via PendingIntent.
Bug: 23909438
Change-Id: I0bb277c8385b7936fbda03cd76f02248c4fc55de
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/qs/tiles')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/tiles/IntentTile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/tiles/IntentTile.java b/packages/SystemUI/src/com/android/systemui/qs/tiles/IntentTile.java index 3d0dc7b..c7f2284 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/tiles/IntentTile.java +++ b/packages/SystemUI/src/com/android/systemui/qs/tiles/IntentTile.java @@ -99,7 +99,7 @@ public class IntentTile extends QSTile<QSTile.State> { try { if (pi != null) { if (pi.isActivity()) { - getHost().startActivityDismissingKeyguard(pi.getIntent()); + getHost().startActivityDismissingKeyguard(pi); } else { pi.send(); } |