From b408a6aeb8d86074bbfc093c67608e0741dba24f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Thu, 1 Apr 2004 23:17:28 +0000 Subject: [PATCH] Make popup menus topmost windows svn path=/trunk/; revision=8949 --- reactos/lib/user32/windows/menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/user32/windows/menu.c b/reactos/lib/user32/windows/menu.c index 758e7405372..694dd40cf36 100644 --- a/reactos/lib/user32/windows/menu.c +++ b/reactos/lib/user32/windows/menu.c @@ -21,7 +21,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: menu.c,v 1.58 2004/03/25 08:51:44 gvg Exp $ +/* $Id: menu.c,v 1.59 2004/04/01 23:17:28 gvg Exp $ * * PROJECT: ReactOS user32.dll * FILE: lib/user32/windows/menu.c @@ -1763,7 +1763,7 @@ MenuShowPopup(HWND WndOwner, HMENU Menu, UINT Id, } /* Display the window */ - SetWindowPos(MenuInfo.Wnd, HWND_TOP, 0, 0, 0, 0, + SetWindowPos(MenuInfo.Wnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE); UpdateWindow(MenuInfo.Wnd);