From b5f186f8a592bd1a5ad8cebf101b58926f76396f Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 6 Jan 2012 13:20:45 +1000 Subject: [PATCH] render: don't bother with animated cursors on floating slaves (#39989) X.Org Bug 39989 Signed-off-by: Peter Hutterer --- render/animcur.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/render/animcur.c b/render/animcur.c index 4cf1fdf..0f174fd 100644 --- a/render/animcur.c +++ b/render/animcur.c @@ -208,6 +208,9 @@ AnimCurDisplayCursor (DeviceIntPtr pDev, AnimCurScreenPtr as = GetAnimCurScreen(pScreen); Bool ret; + if (IsFloating(pDev)) + return FALSE; + Unwrap (as, pScreen, DisplayCursor); if (IsAnimCur(pCursor)) { -- 1.7.7.4