From f88c6293460b50be7d1370fa37dfb16adfb64103 Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Tue, 26 Apr 2016 16:58:21 -0700 Subject: [PATCH] Fixed a bug where the media template wasn't transforming right Bug: 28406828 Change-Id: Ie400fd62cc0efc8f0a77cc81a40a17c54aa90e65 --- .../notification/NotificationMediaTemplateViewWrapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 3c95a786f8cd5..4ce330c062233 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); } }