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

Commit ca5766cf authored by Christopher Tate's avatar Christopher Tate Committed by Android Git Automerger
Browse files

am 86824cf0: am 3a3def13: am 0e8f02d6: am 76dcacad: am 1ff4293e: Merge "Fixed...

am 86824cf0: am 3a3def13: am 0e8f02d6: am 76dcacad: am 1ff4293e: Merge "Fixed race condition in Spinner.DialogPopup on null reference."

* commit '86824cf0':
  Fixed race condition in Spinner.DialogPopup on null reference.
parents 2f4e0c24 86824cf0
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -975,9 +975,11 @@ public class Spinner extends AbsSpinner implements OnClickListener {
        private CharSequence mPrompt;

        public void dismiss() {
            if (mPopup != null) {
                mPopup.dismiss();
                mPopup = null;
            }
        }

        public boolean isShowing() {
            return mPopup != null ? mPopup.isShowing() : false;