Commit 29c1b8fa authored by Alexandre Julliard's avatar Alexandre Julliard

winex11: Ignore FocusOut event on destroyed windows.

parent 7fb42984
......@@ -759,6 +759,7 @@ static void X11DRV_FocusOut( HWND hwnd, XEvent *xev )
if (!hwnd && event->window == x11drv_thread_data()->clip_window) reset_clipping_window();
return;
}
if (!hwnd) return;
if (ximInComposeMode) return;
x11drv_thread_data()->last_focus = hwnd;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment