From 0684bf1b0fa1823bf0614dd8d1c8b10cc0ef3f35 Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Tue, 4 May 2010 08:28:13 -0500 Subject: [PATCH] vnc: make sure to send pointer type change event on SetEncodings Commit 37c34d9d5d87ea9d51760310c8863b82cb8c055a introduced a regression when using relative mouse mode with a client that understands the PointerTypeChange pseudo-encoding. Reported-by: Marcelo Tosatti Reported-by: Gerhard Wiesinger Signed-off-by: Anthony Liguori --- vnc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vnc.c b/vnc.c index 5241a6aa69..b1a3fdb30b 100644 --- a/vnc.c +++ b/vnc.c @@ -1642,6 +1642,8 @@ static void set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings) break; } } + + check_pointer_type_change(&vs->mouse_mode_notifier); } static void set_pixel_conversion(VncState *vs) -- 2.11.4.GIT