summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/AllAppsPagedView.java
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2011-05-10 15:59:42 -0700
committerWinson Chung <winsonc@google.com>2011-05-10 16:00:22 -0700
commitdd2590272a8213216f24910ae1d5b0599da54e8d (patch)
treeb4dc4287dadcf408e0b0b574f178414b096103bd /src/com/android/launcher2/AllAppsPagedView.java
parent95963d614eac0dd67fd70e774c4c83b7eb676b3b (diff)
downloadandroid_packages_apps_Trebuchet-dd2590272a8213216f24910ae1d5b0599da54e8d.tar.gz
android_packages_apps_Trebuchet-dd2590272a8213216f24910ae1d5b0599da54e8d.tar.bz2
android_packages_apps_Trebuchet-dd2590272a8213216f24910ae1d5b0599da54e8d.zip
Disabling isHardwareAccelerated check until we know when they can/can not be made.
Change-Id: I45b18df9512e4b1a86c0ac9893166a4855f0e2c9
Diffstat (limited to 'src/com/android/launcher2/AllAppsPagedView.java')
-rw-r--r--src/com/android/launcher2/AllAppsPagedView.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/launcher2/AllAppsPagedView.java b/src/com/android/launcher2/AllAppsPagedView.java
index a9c08efa3..d9a503fbe 100644
--- a/src/com/android/launcher2/AllAppsPagedView.java
+++ b/src/com/android/launcher2/AllAppsPagedView.java
@@ -541,7 +541,7 @@ public class AllAppsPagedView extends PagedViewWithDraggableItems implements All
// Add any necessary items
for (int i = curNumPageItems; i < numPageItems; ++i) {
- final boolean createHolographicOutlines = isHardwareAccelerated() && (numPages > 1);
+ final boolean createHolographicOutlines = (numPages > 1);
TextView text = (TextView) mInflater.inflate(
R.layout.all_apps_paged_view_application, layout, false);
text.setOnClickListener(this);
@@ -556,7 +556,7 @@ public class AllAppsPagedView extends PagedViewWithDraggableItems implements All
for (int i = startIndex; i < endIndex; ++i) {
final int index = i - startIndex;
final ApplicationInfo info = mFilteredApps.get(i);
- final boolean createHolographicOutlines = isHardwareAccelerated() && (numPages > 1);
+ final boolean createHolographicOutlines = (numPages > 1);
PagedViewIcon icon = (PagedViewIcon) layout.getChildOnPageAt(index);
icon.applyFromApplicationInfo(
info, mPageViewIconCache, true, createHolographicOutlines);
@@ -581,7 +581,7 @@ public class AllAppsPagedView extends PagedViewWithDraggableItems implements All
}
// Center-align the message
- final boolean createHolographicOutlines = isHardwareAccelerated() && (numPages > 1);
+ final boolean createHolographicOutlines = (numPages > 1);
layout.enableCenteredContent(true);
layout.removeAllViewsOnPage();
layout.addViewToCellLayout(icon, -1, 0,