am 6fbc5d9c: DO NOT MERGE. Make sure to invalidate after pulling on an edgeglow.

Merge commit '6fbc5d9c19388e8f1c9a1833bc0e15fcf6b499f1' into gingerbread-plus-aosp

* commit '6fbc5d9c19388e8f1c9a1833bc0e15fcf6b499f1':
  DO NOT MERGE. Make sure to invalidate after pulling on an edgeglow.
This commit is contained in:
Mindy Pereira
2010-10-19 18:23:18 -07:00
committed by Android Git Automerger
2 changed files with 8 additions and 0 deletions

View File

@@ -551,6 +551,10 @@ public class HorizontalScrollView extends FrameLayout {
mEdgeGlowLeft.onRelease();
}
}
if (mEdgeGlowLeft != null
&& (!mEdgeGlowLeft.isFinished() || !mEdgeGlowRight.isFinished())) {
invalidate();
}
}
}
break;

View File

@@ -546,6 +546,10 @@ public class ScrollView extends FrameLayout {
mEdgeGlowTop.onRelease();
}
}
if (mEdgeGlowTop != null
&& (!mEdgeGlowTop.isFinished() || !mEdgeGlowBottom.isFinished())) {
invalidate();
}
}
}
break;