am 51a8880d: Actually set the internal modal value in ListPopupWindow.setModal()

* commit '51a8880dbcf6f662714e4c289d7ef5a9832bf48d':
  Actually set the internal modal value in ListPopupWindow.setModal()
This commit is contained in:
Chet Haase
2014-08-06 14:51:06 +00:00
committed by Android Git Automerger

View File

@@ -270,7 +270,7 @@ public class ListPopupWindow {
* @param modal {@code true} if the popup window should be modal, {@code false} otherwise.
*/
public void setModal(boolean modal) {
mModal = true;
mModal = modal;
mPopup.setFocusable(modal);
}