From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53649) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eDpji-0002WL-H0 for qemu-devel@nongnu.org; Sun, 12 Nov 2017 05:43:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eDpji-00046N-0u for qemu-devel@nongnu.org; Sun, 12 Nov 2017 05:43:34 -0500 Received: from mail-wm0-x244.google.com ([2a00:1450:400c:c09::244]:34611) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eDpjh-00045g-Px for qemu-devel@nongnu.org; Sun, 12 Nov 2017 05:43:33 -0500 Received: by mail-wm0-x244.google.com with SMTP id n74so10660154wmi.1 for ; Sun, 12 Nov 2017 02:43:33 -0800 (PST) From: Jindrich Makovicka Date: Sun, 12 Nov 2017 11:42:44 +0100 Message-Id: <20171112104246.10007-7-makovick@gmail.com> In-Reply-To: <20171112104246.10007-1-makovick@gmail.com> References: <20171023210803.20998-1-makovick@gmail.com> <20171112104246.10007-1-makovick@gmail.com> Subject: [Qemu-devel] [PATCH 6/8] sdl2: Fix dead keyboard after fullsceen List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers , Gerd Hoffmann , Cole Robinson Cc: Jindrich Makovicka --- ui/sdl2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/sdl2.c b/ui/sdl2.c index 51721d764e..cdc599be48 100644 --- a/ui/sdl2.c +++ b/ui/sdl2.c @@ -418,6 +418,7 @@ static void handle_keyup(SDL_Event *ev) sdl2_reset_keys(scon); return; } + sdl2_reset_keys(scon); gui_keysym = 0; } if (!gui_keysym) { -- 2.15.0