From 045932ce774a10b56428a49806bf3f72ae77381a Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Tue, 11 Aug 2020 17:16:54 +1000 Subject: [PATCH] [host] send the correct cursor shape on client connection --- host/src/app.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/host/src/app.c b/host/src/app.c index bc12f6c2..1701c23d 100644 --- a/host/src/app.c +++ b/host/src/app.c @@ -285,10 +285,9 @@ bool captureGetPointerBuffer(void ** data, uint32_t * size) static void sendPointer(bool newClient) { PLGMPMemory mem; - if (app.pointerInfo.shapeUpdate || newClient) { - if (app.pointerInfo.shapeUpdate) + if (!newClient) { // swap the latest shape buffer out of rotation PLGMPMemory tmp = app.pointerShape;