Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 068cad2

Browse files
committed
Merge pull request matplotlib#1036 from gellule/master
Move all figures to the front with a non-interactive show() in macosx backend.
2 parents 09e7dd2 + 6533674 commit 068cad2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/_macosx.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5743,6 +5743,9 @@ - (int)index
57435743
if(nwin > 0)
57445744
{
57455745
[NSApp activateIgnoringOtherApps: YES];
5746+
for (NSWindow *window in [NSApp windows]) {
5747+
[window orderFront:nil];
5748+
}
57465749
[NSApp run];
57475750
}
57485751
Py_INCREF(Py_None);

0 commit comments

Comments
 (0)