Merge "Fixing issue where migration all apps folder couldn't be picked up." into jb-ub-gel-agar

This commit is contained in:
Adam Cohen
2013-07-12 22:16:03 +00:00
committed by Android (Google) Code Review
5 changed files with 19 additions and 13 deletions

View File

@@ -2725,9 +2725,7 @@ public class Workspace extends SmoothPagedView
mTempPt[0] = (int) xy[0];
mTempPt[1] = (int) xy[1];
mLauncher.getDragLayer().getDescendantCoordRelativeToSelf(this, mTempPt, true);
mTempPt[0] -= hotseat.getLeft();
mTempPt[1] -= hotseat.getTop();
mLauncher.getDragLayer().mapCoordInSelfToDescendent(hotseat.getLayout(), mTempPt);
xy[0] = mTempPt[0];
xy[1] = mTempPt[1];