mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 619679 - [Maemo] Dismissing the virtual keyboard causes issues. r=enndeakin, a=approval2.0
This commit is contained in:
parent
0c5bc35158
commit
5ce46c2ce7
@ -331,9 +331,13 @@ nsAutoCompleteController::HandleStartComposition()
|
||||
|
||||
PRBool isOpen = PR_FALSE;
|
||||
input->GetPopupOpen(&isOpen);
|
||||
if (isOpen)
|
||||
if (isOpen) {
|
||||
ClosePopup();
|
||||
mPopupClosedByCompositionStart = isOpen;
|
||||
|
||||
PRBool stillOpen = PR_FALSE;
|
||||
input->GetPopupOpen(&stillOpen);
|
||||
mPopupClosedByCompositionStart = !stillOpen;
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user