Bug 1183037: Ensure that autocomplete popups can be displayed again after being dismissed the first time. r=mconley

This commit is contained in:
Stephen A Pohl 2016-10-24 11:46:16 -04:00
Родитель 5dc1ef0755
Коммит 872ca624a7
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1063,8 +1063,9 @@ nsFormFillController::MouseDown(nsIDOMEvent* aEvent)
bool isOpen = false;
GetPopupOpen(&isOpen);
if (isOpen)
return NS_OK;
if (isOpen) {
return SetPopupOpen(false);
}
nsCOMPtr<nsIAutoCompleteInput> input;
mController->GetInput(getter_AddRefs(input));