am 976fdef2: Allow dropping onto the top row of tiled favorites

* commit '976fdef22ebe17e7ed57e48dbdd086e61e3a0109':
  Allow dropping onto the top row of tiled favorites
diff --git a/src/com/android/dialer/list/PhoneFavoriteDragAndDropListeners.java b/src/com/android/dialer/list/PhoneFavoriteDragAndDropListeners.java
index dfc3c39..a976ead 100644
--- a/src/com/android/dialer/list/PhoneFavoriteDragAndDropListeners.java
+++ b/src/com/android/dialer/list/PhoneFavoriteDragAndDropListeners.java
@@ -58,7 +58,6 @@
                 case DragEvent.ACTION_DRAG_STARTED:
                     if (mTileAdapter != null && mContactTileRow != null
                             && !mTileAdapter.getInDragging()) {
-                        // Gets the current drag location with respect to the whole Dialer view.
                         mX = event.getX();
                         mY = event.getY();
                         if (DEBUG) {
@@ -93,9 +92,8 @@
                 case DragEvent.ACTION_DRAG_EXITED:
                     break;
                 case DragEvent.ACTION_DROP:
-                    // Gets the location of the drag with respect to the whole Dialer view.
-                    mX = event.getX() + v.getLeft();
-                    mY = event.getY() + v.getTop();
+                    mX = event.getX();
+                    mY = event.getY();
                     if (DEBUG) {
                         Log.v(TAG, String.valueOf(mX) + "; " + String.valueOf(mY));
                     }