From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Bnm1p-0001Ir-3L for qemu-devel@nongnu.org; Thu, 22 Jul 2004 18:27:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1Bnm1n-0001ID-EO for qemu-devel@nongnu.org; Thu, 22 Jul 2004 18:27:03 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bnm1n-0001Hw-Bc for qemu-devel@nongnu.org; Thu, 22 Jul 2004 18:27:03 -0400 Received: from [151.189.21.46] (helo=mail-in-06.arcor-online.net) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1Bnlya-00045V-I2 for qemu-devel@nongnu.org; Thu, 22 Jul 2004 18:23:44 -0400 Received: from hatatitla.NotaMusica.com (dsl-082-082-143-232.arcor-ip.net [82.82.143.232]) by mail-in-06.arcor-online.net (Postfix) with ESMTP id 5F234126812 for ; Fri, 23 Jul 2004 00:23:43 +0200 (CEST) Received: from hatatitla.NotaMusica.com (jmartin@localhost [127.0.0.1]) by hatatitla.NotaMusica.com (8.12.3/8.12.3/Debian-6.6) with ESMTP id i6MMNfNC004687 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Fri, 23 Jul 2004 00:23:42 +0200 Received: from localhost (jmartin@localhost) by hatatitla.NotaMusica.com (8.12.3/8.12.3/Debian-6.6) with ESMTP id i6MMNeno004682 for ; Fri, 23 Jul 2004 00:23:40 +0200 Date: Fri, 23 Jul 2004 00:23:39 +0200 (CEST) From: Johannes Martin Subject: Re: [Qemu-devel] CNTRL-key sticks in latest CVS In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Hi, On Thu, 22 Jul 2004, David E. Still wrote: > The problem I'm running into is that on a Windows 98 guest OS when I > CTRL-SHIFT to exit grab, and then click back in to enter grab, the > CTRL-key gets... stuck. Every character I type is a Control character. > This happens on both Mac OS X and Mandrake 10.0 Official. I can get > out of it by pressing CTRL-ESC, so it's not a showstopper by any means, > just a minor annoyance. :) I haven't tested any other OSes. The following patch should fix this problem: *** sdl.c 14 Jul 2004 17:22:33 -0000 1.16 --- sdl.c 22 Jul 2004 22:16:04 -0000 *************** *** 491,497 **** sdl_grab_start(); else sdl_grab_end(); - break; } gui_key_modifier_pressed = 0; gui_keysym = 0; -------- Johannes