From 2ca51dc5f03f3ccd3ef4f55b8e4f068214008894 Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Wed, 16 Sep 2009 11:44:14 -0400 Subject: [PATCH] Remove the debugging code that left icons selected longer than they should be. --- src/com/android/launcher2/AllAppsView.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/com/android/launcher2/AllAppsView.java b/src/com/android/launcher2/AllAppsView.java index 7c7de152a1..95f36d6933 100644 --- a/src/com/android/launcher2/AllAppsView.java +++ b/src/com/android/launcher2/AllAppsView.java @@ -618,9 +618,6 @@ public class AllAppsView extends RSSurfaceView mScript.bindAllocation(mAllocLabelID, Defines.ALLOC_LABEL_IDS); } - if (mAllAppsList != null) { - selectIcon(0); // TODO remove - } mState.save(); } @@ -715,7 +712,7 @@ public class AllAppsView extends RSSurfaceView * You need to call save() on mState on your own after calling this. */ void clearSelectedIcon() { - //mState.selectedIconIndex = -1; + mState.selectedIconIndex = -1; } } }