diff options
| author | 2016-04-27 23:00:04 +0000 | |
|---|---|---|
| committer | 2016-04-27 23:00:09 +0000 | |
| commit | 477af0d4ea0042b8e05084c80ff6960b41d9ef12 (patch) | |
| tree | 6f94ea2c0ebe554f6d8234144db2b64a45cbe66e | |
| parent | 8f4f2a9bfcc9520f95f58cdedc570c5df8a1c7de (diff) | |
| parent | f88c6293460b50be7d1370fa37dfb16adfb64103 (diff) | |
Merge "Fixed a bug where the media template wasn't transforming right" into nyc-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/NotificationMediaTemplateViewWrapper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/NotificationMediaTemplateViewWrapper.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/NotificationMediaTemplateViewWrapper.java index 3c95a786f8cd..4ce330c06223 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/NotificationMediaTemplateViewWrapper.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/NotificationMediaTemplateViewWrapper.java @@ -52,7 +52,7 @@ public class NotificationMediaTemplateViewWrapper extends NotificationTemplateVi // This also clears the existing types super.updateTransformedTypes(); if (mActions != null) { - mTransformationHelper.addTransformedView(TransformableView.TRANSFORMING_VIEW_TEXT, + mTransformationHelper.addTransformedView(TransformableView.TRANSFORMING_VIEW_ACTIONS, mActions); } } |