* #31377: action hooks on ACTION_UP instead of DOWN
diff --git a/src/org/sflphone/model/Bubble.java b/src/org/sflphone/model/Bubble.java
index 1f8c405..ad534dd 100644
--- a/src/org/sflphone/model/Bubble.java
+++ b/src/org/sflphone/model/Bubble.java
@@ -40,6 +40,7 @@
     protected Bitmap saved_photo;
 
     public interface actions {
+        int OUT_OF_BOUNDS = -1;
         int NOTHING = 0;
         int HOLD = 1;
         int RECORD = 2;
@@ -224,7 +225,7 @@
 
         public abstract void generateBitmap();
 
-        public RectF getBounds() {
+        public RectF getDrawerBounds() {
             return bounds;
         }