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.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/launcher2/DragScroller.java b/src/com/android/launcher2/DragScroller.java
index 894b06b27..a3ee6c237 100644
--- a/src/com/android/launcher2/DragScroller.java
+++ b/src/com/android/launcher2/DragScroller.java
@@ -30,11 +30,11 @@ public interface DragScroller {
*
* @param direction The scroll direction
*/
- void onEnterScrollArea(int x, int y, int direction);
+ boolean onEnterScrollArea(int x, int y, int direction);
/**
* The touch point has left the scroll area.
* NOTE: This may not be called, if a drop occurs inside the scroll area.
*/
- void onExitScrollArea();
+ boolean onExitScrollArea();
}