summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/IDLE
diff options
context:
space:
mode:
authorJohn Riggles <jriggles@icloud.com>2024-08-02 03:02:43 (GMT)
committerGitHub <noreply@github.com>2024-08-02 03:02:43 (GMT)
commit5a7f7c48644baf82988f30bcb43e03dcfceb75dd (patch)
treed0553f4065cc589e4324b7cd00fb75b20bafb413 /Misc/NEWS.d/next/IDLE
parentdbdbef3668293abdceac2b8a7b3e4615e6bde143 (diff)
downloadcpython-5a7f7c48644baf82988f30bcb43e03dcfceb75dd.zip
cpython-5a7f7c48644baf82988f30bcb43e03dcfceb75dd.tar.gz
cpython-5a7f7c48644baf82988f30bcb43e03dcfceb75dd.tar.bz2
gh-120083: Add IDLE Hovertip foreground color needed for recent macOS (#120605)
On recent versions of macOS (sometime between Catalina and Sonoma 14.5), the default Hovertip foreground color changed from black to white, thereby matching the background. This might be a matter of matching the white foreground of the dark-mode text. The unreadable result is shown here (#120083 (comment)). The foreground and background colors were made parameters so we can pass different colors for future additional hovertips in IDLE. --------- Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Misc/NEWS.d/next/IDLE')
-rw-r--r--Misc/NEWS.d/next/IDLE/2024-06-16-21-42-45.gh-issue-120083.nczuyv.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2024-06-16-21-42-45.gh-issue-120083.nczuyv.rst b/Misc/NEWS.d/next/IDLE/2024-06-16-21-42-45.gh-issue-120083.nczuyv.rst
new file mode 100644
index 0000000..643c2bb
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2024-06-16-21-42-45.gh-issue-120083.nczuyv.rst
@@ -0,0 +1 @@
+Add explicit black IDLE Hovertip foreground color needed for recent macOS. Fixes Sonoma showing unreadable white on pale yellow. Patch by John Riggles.