From: Andreas Färber Date: Sun, 30 Oct 2011 22:19:54 +0000 (+0100) Subject: cocoa: Close sheet after image file selection X-Git-Tag: qemu-xen-4.3.0-rc1~2062^2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=13766eb1e46452affd12f2b944730e136c6a2dda;p=qemu-upstream-4.5-testing.git cocoa: Close sheet after image file selection If no disk image is specified, the Cocoa frontend displays a modal sheet to let the user select an image file to boot from. This sheet is never closed and it permanently obscures the emulator window. Close it after obtaining the file name in case the user did select a file. Otherwise we exit immediately, so no need to close then. Signed-off-by: Juan Pineda Signed-off-by: Andreas Färber --- diff --git a/ui/cocoa.m b/ui/cocoa.m index d9e4e3dca..0711205cb 100644 --- a/ui/cocoa.m +++ b/ui/cocoa.m @@ -811,6 +811,8 @@ QemuCocoaView *cocoaView; char **argv = (char**)malloc( sizeof(char*)*3 ); + [sheet close]; + asprintf(&argv[0], "%s", bin); asprintf(&argv[1], "-hda"); asprintf(&argv[2], "%s", img);