diff options
| author | Selim Cinek <cinek@google.com> | 2014-05-20 02:27:17 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-20 02:27:17 +0000 |
| commit | 2f4a82af91faf76aa7dd59b22c1354f06410b634 (patch) | |
| tree | 1ebaa242f93ba0558825b713a56e6542981c413f /packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java | |
| parent | e704324a01000cad912c3c637e6341dd82306763 (diff) | |
| parent | 863834bd96bdebcf21f4c4a7d8285d4858c061e4 (diff) | |
| download | frameworks_base-2f4a82af91faf76aa7dd59b22c1354f06410b634.zip frameworks_base-2f4a82af91faf76aa7dd59b22c1354f06410b634.tar.gz frameworks_base-2f4a82af91faf76aa7dd59b22c1354f06410b634.tar.bz2 | |
Merge "Fixed a big with the vetobutton, circumventing double tapping."
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java')
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java b/packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java index 0f214a2..dc3d92a 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java @@ -81,7 +81,8 @@ public abstract class ActivatableNotificationView extends ExpandableOutlineView AnimationUtils.loadInterpolator(context, android.R.interpolator.fast_out_slow_in); mLinearOutSlowInInterpolator = AnimationUtils.loadInterpolator(context, android.R.interpolator.linear_out_slow_in); - mMaxNotificationHeight = getResources().getDimensionPixelSize(R.dimen.notification_max_height); + mMaxNotificationHeight = getResources().getDimensionPixelSize( + R.dimen.notification_max_height); setClipChildren(false); setClipToPadding(false); } |
