From aec6fe9c8ab7716f3eb03a1b7e4797805dc2e65e Mon Sep 17 00:00:00 2001 From: Cimarron Mittelsteadt Date: Sat, 18 Jan 2014 10:59:41 -0800 Subject: [PATCH] Updated the macosx backed figure manager show function to bring the figure to the front upon execution. --- src/_macosx.m | 1 + 1 file changed, 1 insertion(+) diff --git a/src/_macosx.m b/src/_macosx.m index aaa125806f6f..086d1f576590 100644 --- a/src/_macosx.m +++ b/src/_macosx.m @@ -3953,6 +3953,7 @@ static void draw_image_user_coords_device_size(CGContextRef cr, CGImageRef im, { NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]; [window makeKeyAndOrderFront: nil]; + [window orderFrontRegardless]; [pool release]; } Py_INCREF(Py_None);