diff options
author | Deron Johnson <deron.johnson@sun.com> | 2005-01-05 23:07:04 +0000 |
---|---|---|
committer | Deron Johnson <deron.johnson@sun.com> | 2005-01-05 23:07:04 +0000 |
commit | b17cfa150080f315e1b40c9926e4e30c4fdfd02c (patch) | |
tree | 6536229e72a37dbd6317db4bb47dee8cbedfc818 | |
parent | 936729339f08c2252e15d706c329992ede7abf05 (diff) |
Enclose bug fix for 208 in #ifdef LG3D until the Xorg folks decide they
want this fix in the top-level tree.
-rw-r--r-- | mi/miwindow.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mi/miwindow.c b/mi/miwindow.c index 8d0f2ed85..eab2c8641 100644 --- a/mi/miwindow.c +++ b/mi/miwindow.c @@ -919,10 +919,10 @@ miSlideAndSizeWindow(pWin, x, y, w, h, pSib) /* and move those bits */ if (oldpt.x != x || oldpt.y != y -#ifdef COMPOSITE - || pWin->redirectDraw -#endif - ) +#ifdef LG3D + || pWin->redirectDraw +#endif /* LG3D */ + ) (*pWin->drawable.pScreen->CopyWindow)(pWin, oldpt, gravitate[g]); /* remove any overwritten bits from the remaining useful bits */ |