am 78292e45: Fix missing super call in PreviewPlacerView.onDetachedFromWindow

* commit '78292e45cb914eb25f27342fedc235ecb4bf96af':
  Fix missing super call in PreviewPlacerView.onDetachedFromWindow
main
Tadashi G. Takaoka 2013-01-21 02:35:15 -08:00 committed by Android Git Automerger
commit dc860541cd
1 changed files with 1 additions and 0 deletions

View File

@ -173,6 +173,7 @@ public final class PreviewPlacerView extends RelativeLayout {
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
mGestureFloatingPreviewText.onDetachFromWindow();
freeOffscreenBuffer();
}