Merge change 2732 into donut

* changes:
  Fix for #1878497.
This commit is contained in:
Android (Google) Code Review
2009-05-29 12:29:17 -07:00

View File

@@ -46,7 +46,7 @@ public class Gesture implements Parcelable {
private static int sGestureCount = 0; private static int sGestureCount = 0;
private RectF mBoundingBox; private final RectF mBoundingBox = new RectF();
// the same as its instance ID // the same as its instance ID
private long mGestureID; private long mGestureID;
@@ -83,12 +83,7 @@ public class Gesture implements Parcelable {
*/ */
public void addStroke(GestureStroke stroke) { public void addStroke(GestureStroke stroke) {
mStrokes.add(stroke); mStrokes.add(stroke);
mBoundingBox.union(stroke.boundingBox);
if (mBoundingBox == null) {
mBoundingBox = new RectF(stroke.boundingBox);
} else {
mBoundingBox.union(stroke.boundingBox);
}
} }
/** /**