summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristopher Chavez <chrischavez@gmx.us>2024-02-02 10:38:43 (GMT)
committerGitHub <noreply@github.com>2024-02-02 10:38:43 (GMT)
commitd25d4ee60cc789a8b9c222859bb720ade1ab2e30 (patch)
tree177adef01e1bb60ff9955802fc67ee08b642c9ac /Misc
parent53339a0ef72fcfc15221792b117c4670b07a0b20 (diff)
downloadcpython-d25d4ee60cc789a8b9c222859bb720ade1ab2e30.zip
cpython-d25d4ee60cc789a8b9c222859bb720ade1ab2e30.tar.gz
cpython-d25d4ee60cc789a8b9c222859bb720ade1ab2e30.tar.bz2
gh-103820: IDLE: Do not interpret buttons 4/5 as scrolling on non-X11 (GH-103821)
Also fix test_mousewheel: do not skip a check which was broken due to incorrect delta on Aqua and XQuartz, and probably not because of `.update_idletasks()`.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/IDLE/2023-04-25-03-01-23.gh-issue-103820.LCSpza.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2023-04-25-03-01-23.gh-issue-103820.LCSpza.rst b/Misc/NEWS.d/next/IDLE/2023-04-25-03-01-23.gh-issue-103820.LCSpza.rst
new file mode 100644
index 0000000..b9d7faf
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2023-04-25-03-01-23.gh-issue-103820.LCSpza.rst
@@ -0,0 +1,2 @@
+Revise IDLE bindings so that events from mouse button 4/5 on non-X11
+windowing systems (i.e. Win32 and Aqua) are not mistaken for scrolling.