commit | 7bd1bbb509f9569fa18d6b4d33242679fd98bc9b | [log] [tgz] |
---|---|---|
author | Winson Chung <winsonc@google.com> | Mon Feb 13 18:29:29 2012 -0800 |
committer | Winson Chung <winsonc@google.com> | Mon Feb 13 19:05:25 2012 -0800 |
tree | a97556f231f5867d3d254ffad9f4b4e7bbfaafec | |
parent | d83f5f4db328fbd152491bbf9fa13abc94bd6f25 [diff] [blame] |
Animating the drag view scale up and down when dragging items. Change-Id: Ic97d74a14964c6bdc23305b2d378b13a1f2e3664
diff --git a/src/com/android/launcher2/DropTarget.java b/src/com/android/launcher2/DropTarget.java index 4172da2..e49f782 100644 --- a/src/com/android/launcher2/DropTarget.java +++ b/src/com/android/launcher2/DropTarget.java
@@ -55,6 +55,9 @@ /** Indicates that the drag operation was cancelled */ public boolean cancelled = false; + /** Defers removing the DragView from the DragLayer until after the drop animation. */ + public boolean deferDragViewCleanupPostAnimation = true; + public DragObject() { } }