diff options
author | Winson Chung <winsonc@google.com> | 2014-05-27 12:19:28 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2014-05-29 15:43:11 -0700 |
commit | 602de03cf3933ddf3c2548d54956ee76e60d1143 (patch) | |
tree | 1b209f7f94665998a4e477ab200e78bf2de1b67d /packages/SystemUI/src/com/android/systemui/recents/RecentsConfiguration.java | |
parent | b01ed681fe97ff5e98471c120ff9581a78db13c5 (diff) | |
download | frameworks_base-602de03cf3933ddf3c2548d54956ee76e60d1143.zip frameworks_base-602de03cf3933ddf3c2548d54956ee76e60d1143.tar.gz frameworks_base-602de03cf3933ddf3c2548d54956ee76e60d1143.tar.bz2 |
Enabling shadows again.
Change-Id: I4e4a771a7be3f696383059cb608e78dd6315a47a
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/recents/RecentsConfiguration.java')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/recents/RecentsConfiguration.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/recents/RecentsConfiguration.java b/packages/SystemUI/src/com/android/systemui/recents/RecentsConfiguration.java index 6d08281..1ae7a0d 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/RecentsConfiguration.java +++ b/packages/SystemUI/src/com/android/systemui/recents/RecentsConfiguration.java @@ -61,6 +61,7 @@ public class RecentsConfiguration { public int taskViewRemoveAnimTranslationXPx; public int taskViewTranslationZMinPx; public int taskViewTranslationZIncrementPx; + public int taskViewShadowOutlineBottomInsetPx; public int taskViewRoundedCornerRadiusPx; public int searchBarSpaceHeightPx; @@ -132,6 +133,8 @@ public class RecentsConfiguration { taskViewTranslationZMinPx = res.getDimensionPixelSize(R.dimen.recents_task_view_z_min); taskViewTranslationZIncrementPx = res.getDimensionPixelSize(R.dimen.recents_task_view_z_increment); + taskViewShadowOutlineBottomInsetPx = + res.getDimensionPixelSize(R.dimen.recents_task_view_shadow_outline_bottom_inset); searchBarSpaceHeightPx = res.getDimensionPixelSize(R.dimen.recents_search_bar_space_height); taskBarViewDefaultBackgroundColor = |