summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/DragScroller.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher2/DragScroller.java')
-rw-r--r--src/com/android/launcher2/DragScroller.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/launcher2/DragScroller.java b/src/com/android/launcher2/DragScroller.java
index 6af9c3032..6ef4bd873 100644
--- a/src/com/android/launcher2/DragScroller.java
+++ b/src/com/android/launcher2/DragScroller.java
@@ -26,6 +26,7 @@ public interface DragScroller {
/**
* The touch point has entered the scroll area; a scroll is imminent.
+ * This event will only occur while a drag is active.
*
* @param direction The scroll direction
*/
@@ -33,6 +34,7 @@ public interface DragScroller {
/**
* The touch point has left the scroll area.
+ * NOTE: This may not be called, if a drop occurs inside the scroll area.
*/
void onExitScrollArea();
}