8000 Added support for MacOSX backend for PyPy by Mottl · Pull Request #12633 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Added support for MacOSX backend for PyPy #12633

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 15, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions doc/users/next_whats_new/2018-10-26-DM.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Added support for MacOSX backend for PyPy
-----------------------------------------

Fixed issue with MacOSX backend for PyPy and also for non-framework Python
installations.
1 change: 1 addition & 0 deletions src/_macosx.m
Original file line number Diff line number Diff line change
Expand Up @@ -2586,6 +2586,7 @@ static bool verify_framework(void)
have started */
#ifdef COMPILING_FOR_10_6
NSApp = [NSApplication sharedApplication];
[NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
NSApplicationActivationPolicy activationPolicy = [NSApp activationPolicy];
switch (activationPolicy) {
case NSApplicationActivationPolicyRegular:
Expand Down
0