Fixing issue where dropping on the system bar would not properly cancel the drag.

Change-Id: I3d920cabb99216c222d5c419374527068f1947d0
This commit is contained in:
Winson Chung
2010-11-12 12:10:35 -08:00
parent bbc60d8e79
commit a34abf8c78
2 changed files with 11 additions and 0 deletions

View File

@@ -584,6 +584,8 @@ public class DragController {
mDragSource.onDropCompleted((View) dropTarget, false);
return true;
}
} else {
mDragSource.onDropCompleted(null, false);
}
return false;
}