server: Also return the previous cursor position in the set_cursor request.
diff --git a/server/queue.c b/server/queue.c
index b9b42e4..91fe1fc 100644
--- a/server/queue.c
+++ b/server/queue.c
@@ -2650,6 +2650,8 @@
 
     reply->prev_handle = input->cursor;
     reply->prev_count  = input->cursor_count;
+    reply->prev_x      = input->desktop->cursor.x;
+    reply->prev_y      = input->desktop->cursor.y;
 
     if (req->flags & SET_CURSOR_HANDLE)
     {