summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/IDLE
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-05-29 23:13:00 (GMT)
committerGitHub <noreply@github.com>2020-05-29 23:13:00 (GMT)
commit3dcccd1186febe0bca5936aed750d55c68b78bcd (patch)
treeb1554b722f98b96b880043edcac0c8961b23425e /Misc/NEWS.d/next/IDLE
parent00a240bf7f95bbd220f1cfbf9eb58484a5f9681a (diff)
downloadcpython-3dcccd1186febe0bca5936aed750d55c68b78bcd.zip
cpython-3dcccd1186febe0bca5936aed750d55c68b78bcd.tar.gz
cpython-3dcccd1186febe0bca5936aed750d55c68b78bcd.tar.bz2
bpo-39885: Make IDLE context menu cut and copy work again (GH-18951)
Leave selection when right click within. This exception to clearing selections when right-clicking was omitted from the previous commit, 4ca060d. I did not realize that this completely disabled the context menu entries, and I should have merged a minimal fix immediately. An automated test should follow. (cherry picked from commit 97e4e0f53d6690db6b942678489716a30925b8af) 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/2020-05-29-18-21-58.bpo-39885.zB_-bN.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2020-05-29-18-21-58.bpo-39885.zB_-bN.rst b/Misc/NEWS.d/next/IDLE/2020-05-29-18-21-58.bpo-39885.zB_-bN.rst
new file mode 100644
index 0000000..a847b75
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2020-05-29-18-21-58.bpo-39885.zB_-bN.rst
@@ -0,0 +1,2 @@
+Make context menu Cut and Copy work again when right-clicking within a
+selection.