diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-09-02 10:53:40 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-09-03 08:39:27 +1000 |
commit | 993ca5acbdccef9e43cd6580e7cc22cfda1a2578 (patch) | |
tree | 322f04381429dfbb8390a71f10e3e00ae5606568 /dix | |
parent | b41db8fe460fc0956922b79261752d1bb104684f (diff) |
dix: when unsetting a cursor, update the sprite immediately (#23608)
Removing the device cursor while the cursor was within the window did not
update the visible sprite until the next enter/leave event.
X.Org Bug 23608 <http://bugs.freedesktop.org/show_bug.cgi?id=23608>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'dix')
-rw-r--r-- | dix/window.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dix/window.c b/dix/window.c index 9663578f7..caff1cbff 100644 --- a/dix/window.c +++ b/dix/window.c @@ -3541,7 +3541,7 @@ ChangeWindowDeviceCursor(WindowPtr pWin, pWin->optional->deviceCursors = pNode->next; xfree(pNode); - return Success; + goto out; } } else @@ -3586,6 +3586,7 @@ ChangeWindowDeviceCursor(WindowPtr pWin, } } +out: if (pWin->realized) WindowHasNewCursor(pWin); |