m_mainWidget = (WXWindow) xwindow;
wxAddWindowToTable( xwindow, (wxWindow*) this );
+ // Set background to None which will prevent X11 from clearing the
+ // background comletely.
+ XSetWindowBackgroundPixmap( xdisplay, xwindow, None );
+
XSetTransientForHint( xdisplay, xwindow, xparent );
XWMHints wm_hints;
{
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;
}