Index: composite/compwindow.c =================================================================== RCS file: /cvs/xserver/xserver/composite/compwindow.c,v retrieving revision 1.13 diff -u -p -r1.13 compwindow.c --- composite/compwindow.c 8 Feb 2005 22:39:20 -0000 1.13 +++ composite/compwindow.c 12 Feb 2005 05:25:10 -0000 @@ -547,7 +547,9 @@ compCopyWindow (WindowPtr pWin, DDXPoint REGION_TRANSLATE (prgnSrc, prgnSrc, pWin->drawable.x - ptOldOrg.x, pWin->drawable.y - ptOldOrg.y); +#if 0 DamageDamageRegion (&pWin->drawable, prgnSrc); +#endif } cs->CopyWindow = pScreen->CopyWindow; pScreen->CopyWindow = compCopyWindow; @@ -626,7 +628,9 @@ compSetRedirectBorderClip (WindowPtr pWi /* * Report that as damaged so it will be redrawn */ +#if 0 DamageDamageRegion (&pWin->drawable, &damage); +#endif REGION_UNINIT (pScreen, &damage); /* * Save the new border clip region Index: hw/kdrive/ephyr/hostx.c =================================================================== RCS file: /cvs/xserver/xserver/hw/kdrive/ephyr/hostx.c,v retrieving revision 1.11 diff -u -p -r1.11 hostx.c --- hw/kdrive/ephyr/hostx.c 6 Dec 2004 22:29:31 -0000 1.11 +++ hw/kdrive/ephyr/hostx.c 12 Feb 2005 05:25:10 -0000 @@ -479,9 +479,16 @@ hostx_screen_init (int width, int height /* Ask the WM to keep our size static */ size_hints = XAllocSizeHints(); +#if 0 size_hints->max_width = size_hints->min_width = width; size_hints->max_height = size_hints->min_height = height; size_hints->flags = PMinSize|PMaxSize; +#else + size_hints->min_width = 100; + size_hints->min_height = 100; + size_hints->flags = PMinSize; +#endif + XSetWMNormalHints(HostX.dpy, HostX.win, size_hints); XFree(size_hints);