mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
gh-119174: Fix high DPI causes turtledemo(turtle-graphics examples) windows blurry (#119175)
------ Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
This commit is contained in:
parent
172690227e
commit
538ed5e481
5 changed files with 26 additions and 11 deletions
|
@ -12,11 +12,26 @@ TODO:
|
|||
* std streams (pyshell, run),
|
||||
* warning stuff (pyshell, run).
|
||||
"""
|
||||
import sys
|
||||
|
||||
# .pyw is for Windows; .pyi is for typing stub files.
|
||||
# The extension order is needed for iomenu open/save dialogs.
|
||||
py_extensions = ('.py', '.pyw', '.pyi')
|
||||
|
||||
|
||||
# Fix for HiDPI screens on Windows. CALL BEFORE ANY TK OPERATIONS!
|
||||
# URL for arguments for the ...Awareness call below.
|
||||
# https://msdn.microsoft.com/en-us/library/windows/desktop/dn280512(v=vs.85).aspx
|
||||
if sys.platform == 'win32': # pragma: no cover
|
||||
def fix_win_hidpi(): # Called in pyshell and turtledemo.
|
||||
try:
|
||||
import ctypes
|
||||
PROCESS_SYSTEM_DPI_AWARE = 1 # Int required.
|
||||
ctypes.OleDLL('shcore').SetProcessDpiAwareness(PROCESS_SYSTEM_DPI_AWARE)
|
||||
except (ImportError, AttributeError, OSError):
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
from unittest import main
|
||||
main('idlelib.idle_test.test_util', verbosity=2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue