From 4e99fdf61db07ea8d03514a3c81375d11f20f07c Mon Sep 17 00:00:00 2001 From: Abby Falstad Date: Mon, 18 Apr 2016 01:29:50 -0700 Subject: [PATCH] [mac os x] ensures newly created window is drawn in front and active --- darwin/window.m | 1 + 1 file changed, 1 insertion(+) diff --git a/darwin/window.m b/darwin/window.m index fda55e44a..22819ebdd 100644 --- a/darwin/window.m +++ b/darwin/window.m @@ -100,6 +100,7 @@ static void windowCommitShow(uiControl *c) uiWindow *w = (uiWindow *) c; [w->window makeKeyAndOrderFront:w->window]; + [NSApp activateIgnoringOtherApps:YES]; } static void windowCommitHide(uiControl *c)