From: Alex Henrie <alexhenrie24(a)gmail.com> --- dlls/mshtml/view.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/mshtml/view.c b/dlls/mshtml/view.c index 3f31e609e39..cc66c1ff33a 100644 --- a/dlls/mshtml/view.c +++ b/dlls/mshtml/view.c @@ -724,8 +724,7 @@ static HRESULT WINAPI OleDocumentView_UIActivate(IOleDocumentView *iface, BOOL f call_set_active_object((IOleInPlaceUIWindow*)This->frame, NULL); if(This->hostui) IDocHostUIHandler_HideUI(This->hostui); - if(This->ipsite) - IOleInPlaceSite_OnUIDeactivate(This->ipsite, FALSE); + IOleInPlaceSite_OnUIDeactivate(This->ipsite, FALSE); } } return S_OK; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/2798