[Qemu-devel] [PATCH] ui/cocoa: Make sure app is not starting in the background

BALATON Zoltan posted 1 patch 5 years, 2 months ago
Failed in applying to current master (apply log)
ui/cocoa.m | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
[Qemu-devel] [PATCH] ui/cocoa: Make sure app is not starting in the background
Posted by BALATON Zoltan 5 years, 2 months ago
Activate app to make sure the window is brought to front e.g. when
started from a terminal window.

Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
---
This is on top of Peter's patches.

 ui/cocoa.m | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ui/cocoa.m b/ui/cocoa.m
index 201a294ed4..4727f9c392 100644
--- a/ui/cocoa.m
+++ b/ui/cocoa.m
@@ -1746,7 +1746,8 @@ int main (int argc, const char * argv[]) {
     QemuCocoaAppController *appController = [[QemuCocoaAppController alloc] init];
     [NSApp setDelegate:appController];
 
-    // Start the main event loop
+    // Activate app and start the main event loop
+    [NSApp activateIgnoringOtherApps:YES];
     COCOA_DEBUG("Main thread: entering OSX run loop\n");
     [NSApp run];
     COCOA_DEBUG("Main thread: left OSX run loop, exiting\n");
-- 
2.13.7