diff --git a/src/com/android/launcher2/PagedViewIcon.java b/src/com/android/launcher2/PagedViewIcon.java index 300bab5f00..fbc67d8a08 100644 --- a/src/com/android/launcher2/PagedViewIcon.java +++ b/src/com/android/launcher2/PagedViewIcon.java @@ -122,12 +122,14 @@ public class PagedViewIcon extends CacheableTextView implements Checkable { } private void queueHolographicOutlineCreation() { + /* Temporarily disabling holographic outline creation. // Generate the outline in the background if (mHolographicOutline == null) { Message m = sWorker.obtainMessage(MESSAGE_CREATE_HOLOGRAPHIC_OUTLINE); m.obj = this; sWorker.sendMessage(m); } + */ } public void applyFromApplicationInfo(ApplicationInfo info, PagedViewIconCache cache, diff --git a/src/com/android/launcher2/PagedViewWidget.java b/src/com/android/launcher2/PagedViewWidget.java index 4d4ccc2d44..89ed0eceea 100644 --- a/src/com/android/launcher2/PagedViewWidget.java +++ b/src/com/android/launcher2/PagedViewWidget.java @@ -120,12 +120,14 @@ public class PagedViewWidget extends LinearLayout { } private void queueHolographicOutlineCreation() { + /* Temporarily disabling holographic outline creation. // Generate the outline in the background if (mHolographicOutline == null) { Message m = sWorker.obtainMessage(MESSAGE_CREATE_HOLOGRAPHIC_OUTLINE); m.obj = this; sWorker.sendMessage(m); } + */ } public void applyFromAppWidgetProviderInfo(AppWidgetProviderInfo info,