diff options
author | Ned Deily <nad@acm.org> | 2013-02-01 23:17:34 -0800 |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-02-01 23:17:34 -0800 |
commit | c1eb48a8fd6b1730e02e383988208469900ce363 (patch) | |
tree | c56a99319e8a76573878f7e8eaa36a67987eca66 | |
parent | a5042671c31149fdfae98c5600ed9207e967fee4 (diff) | |
parent | 380f7a186ffb611a0d2bea8f95dd9d6625f9285a (diff) | |
download | cpython-git-c1eb48a8fd6b1730e02e383988208469900ce363.tar.gz |
Issue #15587: merge from 3.3
-rw-r--r-- | Mac/IDLE/IDLE.app/Contents/Info.plist | 2 | ||||
-rw-r--r-- | Mac/Resources/app/Info.plist.in | 2 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
3 files changed, 8 insertions, 0 deletions
diff --git a/Mac/IDLE/IDLE.app/Contents/Info.plist b/Mac/IDLE/IDLE.app/Contents/Info.plist index 8bffb9a572..81daff3dc9 100644 --- a/Mac/IDLE/IDLE.app/Contents/Info.plist +++ b/Mac/IDLE/IDLE.app/Contents/Info.plist @@ -53,5 +53,7 @@ <string>????</string> <key>CFBundleVersion</key> <string>%version%</string> + <key>NSHighResolutionCapable</key> + <true/> </dict> </plist> diff --git a/Mac/Resources/app/Info.plist.in b/Mac/Resources/app/Info.plist.in index a91b1eec29..8af5efcdfa 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> @@ -847,6 +847,10 @@ Build - Issue #15819: Make sure we can build Python out-of-tree from a read-only source directory. (Somewhat related to issue #9860.) +- 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. + Documentation ------------- |