From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MQRo3-0002aY-Vv for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:07:24 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MQRnz-0002aH-7z for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:07:23 -0400 Received: from [199.232.76.173] (port=53691 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MQRnz-0002aE-0m for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:07:19 -0400 Received: from mx20.gnu.org ([199.232.41.8]:13497) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MQRny-0005Nx-JV for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:07:18 -0400 Received: from mail-fx0-f211.google.com ([209.85.220.211]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MQRnx-0004hJ-D4 for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:07:17 -0400 Received: by fxm7 with SMTP id 7so2127362fxm.34 for ; Mon, 13 Jul 2009 13:07:15 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v624) Content-Transfer-Encoding: 7bit Message-Id: <7698675e701a117b5daf95f418e9222d@gmail.com> Content-Type: text/plain; charset=US-ASCII; format=flowed From: G 3 Date: Mon, 13 Jul 2009 16:07:08 -0400 Subject: [Qemu-devel] [PATCH] Fixes a bug that prevented the open sheet from closing after the "Boot image" button was 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 with the openPanelDidEnd method that left the open sheet up, even after 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 55ff2b4..b655dcc 100644 --- a/cocoa.m +++ b/cocoa.m @@ -793,7 +793,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