diff options
author | Ned Deily <nad@acm.org> | 2013-02-02 07:10:56 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-02-02 07:10:56 (GMT) |
commit | 6e7da1527969897a408dc23c16f47729edb04558 (patch) | |
tree | 70a96ff19c26d3928dba88031f88d88db00ed91e /Mac | |
parent | a8a3468abe861ce48ba1f7e1945facf4be5046fc (diff) | |
download | cpython-6e7da1527969897a408dc23c16f47729edb04558.zip cpython-6e7da1527969897a408dc23c16f47729edb04558.tar.gz cpython-6e7da1527969897a408dc23c16f47729edb04558.tar.bz2 |
Issue #15587: Enable Tk high-resolution text rendering on Macs with
Retina displays. Applies to Tkinter apps, such as IDLE, on OS X
framework builds linked with Cocoa Tk 8.5+.
Suggested by Kevin Walzer
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/IDLE/Info.plist.in | 2 | ||||
-rw-r--r-- | Mac/Resources/app/Info.plist.in | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Mac/IDLE/Info.plist.in b/Mac/IDLE/Info.plist.in index dc09be8..71ff0ff 100644 --- a/Mac/IDLE/Info.plist.in +++ b/Mac/IDLE/Info.plist.in @@ -51,6 +51,8 @@ <string>%VERSION%</string> <key>CFBundleVersion</key> <string>%VERSION%</string> + <key>NSHighResolutionCapable</key> + <true/> <!-- <key>LSMinimumSystemVersionByArchitecture</key> <dict> diff --git a/Mac/Resources/app/Info.plist.in b/Mac/Resources/app/Info.plist.in index a91b1ee..8af5efc 100644 --- a/Mac/Resources/app/Info.plist.in +++ b/Mac/Resources/app/Info.plist.in @@ -56,5 +56,7 @@ <true/> <key>NSHumanReadableCopyright</key> <string>(c) 2013 Python Software Foundation.</string> + <key>NSHighResolutionCapable</key> + <true/> </dict> </plist> |