Tue Mar 22 12:47:16 2005 Søren Sandmann <sandmann@redhat.com>

Only validate the source if it is a viewable window. Stops the cursor
    flickering when it is above an unviewable window.
This commit is contained in:
Søren Sandmann Pedersen 2005-03-22 17:49:14 +00:00
parent 1d68ede0ee
commit cc95e597b5

View File

@ -787,8 +787,12 @@ damageCopyPlane(DrawablePtr pSrc,
/* The driver will only call SourceValidate() when pSrc != pDst,
* but the software sprite (misprite.c) always need to know when a
* drawable is copied so it can remove the sprite. See #1030. */
if ((pSrc == pDst) && pSrc->pScreen->SourceValidate)
if ((pSrc == pDst) && pSrc->pScreen->SourceValidate &&
pSrc->type == DRAWABLE_WINDOW &&
((WindowPtr)pSrc)->viewable)
{
(*pSrc->pScreen->SourceValidate) (pSrc, srcx, srcy, width, height);
}
if (checkGCDamage (pDst, pGC))
{