From: Robert Roebling Date: Thu, 14 Feb 2002 19:55:26 +0000 (+0000) Subject: Fixed bug with disappearing menus. They were X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/90f501b16e1b6dcc9e2aae6a413287a22842da61 Fixed bug with disappearing menus. They were drawn under all other windows all but the first time. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14210 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/x11/popupwin.cpp b/src/x11/popupwin.cpp index 4ce0694c67..e4d809c98c 100644 --- a/src/x11/popupwin.cpp +++ b/src/x11/popupwin.cpp @@ -102,11 +102,7 @@ bool wxPopupWindow::Show( bool show ) { bool ret = wxWindowX11::Show( show ); -#if 0 - int x,y; - GetSize( &x, &y ); - printf( "popup size %d, %d\n", x, y ); -#endif + Raise(); return ret; }