diff options
| author | 2009-06-04 13:28:20 -0700 | |
|---|---|---|
| committer | 2009-06-04 13:28:20 -0700 | |
| commit | 7835b0b742a36641a4005663134dc0b5d0678eab (patch) | |
| tree | 4ecb5badb1932bf75be6e6dd474115da20b8e0ce | |
| parent | d84aa185149edea1f1eba95a2c948930348864fe (diff) | |
| parent | f993ad5b89a8aa47fcbc7494811f45bb74cb8713 (diff) | |
Merge change 3192 into donut
* changes:
Fixes #1882836.
| -rw-r--r-- | core/java/android/widget/AbsListView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/widget/AbsListView.java b/core/java/android/widget/AbsListView.java index ec021432ba59..14a85f868394 100644 --- a/core/java/android/widget/AbsListView.java +++ b/core/java/android/widget/AbsListView.java @@ -1056,11 +1056,12 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te public Parcelable onSaveInstanceState() { /* * This doesn't really make sense as the place to dismiss the - * popup, but there don't seem to be any other useful hooks + * popups, but there don't seem to be any other useful hooks * that happen early enough to keep from getting complaints * about having leaked the window. */ dismissPopup(); + dismissGesturesPopup(); Parcelable superState = super.onSaveInstanceState(); |