From 710f7b317d70d31ea2b640a3062512185bb06ca7 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Wed, 14 Mar 2012 16:44:50 +0400 Subject: [eterhack] winex11.drv: Fix showing Guardant Net Server icon in the system tray (eterbug #8252). --- dlls/winex11.drv/window.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c index 99e1f82..2916836 100644 --- a/dlls/winex11.drv/window.c +++ b/dlls/winex11.drv/window.c @@ -2697,6 +2697,7 @@ void CDECL X11DRV_SetFocus( HWND hwnd ) if (!(hwnd = GetAncestor( hwnd, GA_ROOT ))) return; if (!(data = X11DRV_get_win_data(hwnd)) && !(data = X11DRV_create_win_data(hwnd))) return; + if (data->managed || !data->whole_window) return; if (EVENT_x11_time_to_win32_time(0)) /* ICCCM says don't use CurrentTime, so try to use last message time if possible */ -- 1.7.9.2