mshtml: Set focus to FALSE in InPlaceDeactivate.

This commit is contained in:
Jacek Caban 2007-06-22 23:33:41 +02:00 committed by Alexandre Julliard
parent 5baf587c43
commit dc2260468c
1 changed files with 3 additions and 0 deletions

View File

@ -201,6 +201,9 @@ static HRESULT WINAPI OleInPlaceObjectWindowless_InPlaceDeactivate(IOleInPlaceOb
SetWindowPos(This->hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
}
This->focus = FALSE;
notif_focus(This);
This->in_place_active = FALSE;
if(This->ipsite) {
IOleInPlaceSiteEx *ipsiteex;