From: Ned Deily Date: Sat, 2 Feb 2013 07:12:42 +0000 (-0800) Subject: Issue #15587: Enable Tk high-resolution text rendering on Macs with X-Git-Tag: v3.2.4rc1~161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9cd864dcbf178e18d1e8370724218594757fddb0;p=thirdparty%2FPython%2Fcpython.git 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 --- diff --git a/Mac/IDLE/IDLE.app/Contents/Info.plist b/Mac/IDLE/IDLE.app/Contents/Info.plist index 8bffb9a57289..81daff3dc9ce 100644 --- a/Mac/IDLE/IDLE.app/Contents/Info.plist +++ b/Mac/IDLE/IDLE.app/Contents/Info.plist @@ -53,5 +53,7 @@ ???? CFBundleVersion %version% + NSHighResolutionCapable + diff --git a/Mac/Resources/app/Info.plist.in b/Mac/Resources/app/Info.plist.in index a91b1eec2944..8af5efcdfaf5 100644 --- a/Mac/Resources/app/Info.plist.in +++ b/Mac/Resources/app/Info.plist.in @@ -56,5 +56,7 @@ NSHumanReadableCopyright (c) 2013 Python Software Foundation. + NSHighResolutionCapable + diff --git a/Misc/NEWS b/Misc/NEWS index b2e6f7e5e584..9f2f59a5e74f 100644 --- 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 -----------