winex11: Use the Globally Active focus model with take focus.
diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c
index 9970348..19551fa 100644
--- a/dlls/winex11.drv/window.c
+++ b/dlls/winex11.drv/window.c
@@ -1038,7 +1038,7 @@
     if (data->wm_hints)
     {
         data->wm_hints->flags |= InputHint | StateHint | WindowGroupHint;
-        data->wm_hints->input = !(style & WS_DISABLED);
+        data->wm_hints->input = !use_take_focus && !(style & WS_DISABLED);
         data->wm_hints->initial_state = (style & WS_MINIMIZE) ? IconicState : NormalState;
         data->wm_hints->window_group = group_leader;
         XSetWMHints( display, data->whole_window, data->wm_hints );