Fixing issue where migration all apps folder couldn't be picked up.

- Ensuring that we add items to the non-primary home page
- Fixing issue with drop-target touch handling on tablets

Change-Id: Iea5a383dc735a8f6044a00982f05789f8328ab63
This commit is contained in:
Winson Chung
2013-07-12 14:14:16 -07:00
parent 7bac576622
commit 156ab5b22e
5 changed files with 19 additions and 13 deletions
+1 -3
View File
@@ -2710,9 +2710,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];