From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MKLZg-0004eT-AU for qemu-devel@nongnu.org; Fri, 26 Jun 2009 20:15:20 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MKLZb-0004eH-Vv for qemu-devel@nongnu.org; Fri, 26 Jun 2009 20:15:19 -0400 Received: from [199.232.76.173] (port=49386 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MKLZb-0004eE-Qc for qemu-devel@nongnu.org; Fri, 26 Jun 2009 20:15:15 -0400 Received: from mail-gx0-f227.google.com ([209.85.217.227]:39130) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MKLZb-0004cg-Jz for qemu-devel@nongnu.org; Fri, 26 Jun 2009 20:15:15 -0400 Received: by gxk27 with SMTP id 27so7733178gxk.10 for ; Fri, 26 Jun 2009 17:15:14 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v624) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; format=flowed From: G 3 Date: Fri, 26 Jun 2009 20:15:10 -0400 Subject: [Qemu-devel] [PATCH 1/2] Fixes a bug that prevents the open panel from closing when the "Boot Image" button is pushed. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This patch fixes a bug that would keep the open panel/sheet open even after a the "Boot Image" button was pushed. Signed-off-by: John Arbuckle --- cocoa.m | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cocoa.m b/cocoa.m index 0b0f555..232d0bb 100644 --- a/cocoa.m +++ b/cocoa.m @@ -801,7 +801,7 @@ int cocoa_keycode_to_qemu(int keycode) asprintf(&argv[2], "%s", img); printf("Using argc %d argv %s -hda %s\n", 3, bin, img); - + [sheet close]; [self startEmulationWithArgc:3 argv:(char**)argv]; } } -- 1.6.3.3