Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2749797 authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Fix ListView filter popups when window focus changes"

parents 4acdcb72 97566043
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1641,7 +1641,7 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te
                mResurrectToPosition = mSelectedPosition;
            }
        } else {
            if (mFiltered) {
            if (mFiltered && !mPopupHidden) {
                // Show the type filter only if a filter is in effect
                showPopup();
            }
@@ -3510,7 +3510,6 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te
        if (mPopup != null) {
            mPopup.dismiss();
        }
        mPopupHidden = false;
    }

    /**