From fba87b110f818a02d286e15762bfcf26389e64f7 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Thu, 23 Aug 2007 15:44:24 +0100 Subject: [PATCH] winex11.drv: Don't activate the systray window when repositioning it. --- dlls/winex11.drv/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c index 030989b4a32..f7a09092a16 100644 --- a/dlls/winex11.drv/window.c +++ b/dlls/winex11.drv/window.c @@ -341,7 +341,7 @@ static void systray_dock_window( Display *display, struct x11drv_win_data *data * http://standards.freedesktop.org/xembed-spec/latest/ar01s04.html */ SetWindowPos( data->hwnd, NULL, virtual_screen_rect.right + 1, virtual_screen_rect.bottom + 1, - 0, 0, SWP_NOZORDER | SWP_NOSIZE ); + 0, 0, SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE ); /* set XEMBED protocol data on the window */ info[0] = 0; /* protocol version */