From 466810ba7940bc109e1f46849f6d1df4dff3e84c Mon Sep 17 00:00:00 2001 From: Michael Jurka Date: Mon, 25 Oct 2010 13:41:02 -0700 Subject: Fixed disappearing customize button Bug: 3130085 --- src/com/android/launcher2/ApplicationInfoDropTarget.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/com/android/launcher2') diff --git a/src/com/android/launcher2/ApplicationInfoDropTarget.java b/src/com/android/launcher2/ApplicationInfoDropTarget.java index fe5ffd1..3e5ebd5 100644 --- a/src/com/android/launcher2/ApplicationInfoDropTarget.java +++ b/src/com/android/launcher2/ApplicationInfoDropTarget.java @@ -118,10 +118,10 @@ public class ApplicationInfoDropTarget extends ImageView implements DropTarget, public void onDragEnd() { if (mActive) { mActive = false; - if (mManageVisibility) { - setVisibility(GONE); - mHandle.setVisibility(VISIBLE); - } + } + if (mManageVisibility) { + setVisibility(GONE); + mHandle.setVisibility(VISIBLE); } } -- cgit v1.1