]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #15587: Enable Tk high-resolution text rendering on Macs with
authorNed Deily <nad@acm.org>
Sat, 2 Feb 2013 07:12:42 +0000 (23:12 -0800)
committerNed Deily <nad@acm.org>
Sat, 2 Feb 2013 07:12:42 +0000 (23:12 -0800)
Retina displays.  Applies to Tkinter apps, such as IDLE, on OS X
framework builds linked with Cocoa Tk 8.5+.
Suggested by Kevin Walzer

Mac/IDLE/IDLE.app/Contents/Info.plist
Mac/Resources/app/Info.plist.in
Misc/NEWS

index 8bffb9a572891bed2cb86ec3ff750d949d0b20bd..81daff3dc9cee74043e10f436ca1dd56e32756c4 100644 (file)
@@ -53,5 +53,7 @@
        <string>????</string>
        <key>CFBundleVersion</key>
        <string>%version%</string>
+       <key>NSHighResolutionCapable</key>
+       <true/>
 </dict>
 </plist>
index a91b1eec2944c2ceb7dc6dd3d846f5c0a4e2d7f9..8af5efcdfaf5fa5aec277117293a6f890d677951 100644 (file)
@@ -56,5 +56,7 @@
        <true/>
        <key>NSHumanReadableCopyright</key>
        <string>(c) 2013 Python Software Foundation.</string>
+       <key>NSHighResolutionCapable</key>
+       <true/>
 </dict>
 </plist>
index b2e6f7e5e584f4851f25087746be1b34ecd6a025..9f2f59a5e74f3ef67532fad5d717ac91b69dd2ad 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -960,6 +960,10 @@ Build
 
 - Issue #16256: OS X installer now sets correct permissions for doc directory.
 
+- 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.
+
 Tools/Demos
 -----------