mirror of https://github.com/python/cpython
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
This commit is contained in:
parent
a8a3468abe
commit
6e7da15279
|
@ -51,6 +51,8 @@
|
|||
<string>%VERSION%</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>%VERSION%</string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
<!--
|
||||
<key>LSMinimumSystemVersionByArchitecture</key>
|
||||
<dict>
|
||||
|
|
|
@ -56,5 +56,7 @@
|
|||
<true/>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>(c) 2013 Python Software Foundation.</string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -800,6 +800,10 @@ Build
|
|||
|
||||
- Issue #14437: Fix building the _io module under Cygwin.
|
||||
|
||||
- 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
|
||||
-----------
|
||||
|
||||
|
|
Loading…
Reference in New Issue