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

Commit 97566043 authored by Adam Powell's avatar Adam Powell
Browse files

Fix ListView filter popups when window focus changes

Change-Id: I8c468900d5dd4d8d82308e2bed3bf992b6c803c7
parent 15961365
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;
    }

    /**