Make popup non-modal for contact aggregation suggestion.
When editing a contact's name, the aggregation-engine provides
potential contacts that the user may wish to aggregate the current
contact with. However, this popup was modal, which is bad UX.
Bug: 5438601
Change-Id: Ic8519c235af75d44cfa060f16107cd64aeef61b9
diff --git a/src/com/android/contacts/editor/ContactEditorFragment.java b/src/com/android/contacts/editor/ContactEditorFragment.java
index 2d61fbc..a18a93f 100644
--- a/src/com/android/contacts/editor/ContactEditorFragment.java
+++ b/src/com/android/contacts/editor/ContactEditorFragment.java
@@ -1397,7 +1397,6 @@
mAggregationSuggestionPopup.setAnchorView(anchorView);
mAggregationSuggestionPopup.setWidth(anchorView.getWidth());
mAggregationSuggestionPopup.setInputMethodMode(ListPopupWindow.INPUT_METHOD_NOT_NEEDED);
- mAggregationSuggestionPopup.setModal(true);
mAggregationSuggestionPopup.setAdapter(
new AggregationSuggestionAdapter(getActivity(),
mState.size() == 1 && mState.get(0).isContactInsert(),