diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-03-08 18:49:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-08 18:49:44 (GMT) |
commit | a5e821c7269ebed6e8b4b4eee3f2247ec41a9788 (patch) | |
tree | 7ac52bee9a3ac8d416cfe8e1e209cb60c890904e /Misc/NEWS.d/next/IDLE | |
parent | 765117dc161d7bd8317e9df7fb3f3b5caca281c2 (diff) | |
download | cpython-a5e821c7269ebed6e8b4b4eee3f2247ec41a9788.zip cpython-a5e821c7269ebed6e8b4b4eee3f2247ec41a9788.tar.gz cpython-a5e821c7269ebed6e8b4b4eee3f2247ec41a9788.tar.bz2 |
bpo-39852: IDLE 'Go to line' deletes selection, updates status (GH-18801)
It appears standard that moving the text insert cursor away from a selection clears the
selection. Clearing prevents accidental deletion of a possibly off-screen bit of text.
The update is for Ln and Col on the status bar.
(cherry picked from commit 2522db11df102be3baf25ce9e816ebe8ffdb7fcc)
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-03-06-01-55-14.bpo-39852.QjA1qF.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2020-03-06-01-55-14.bpo-39852.QjA1qF.rst b/Misc/NEWS.d/next/IDLE/2020-03-06-01-55-14.bpo-39852.QjA1qF.rst new file mode 100644 index 0000000..7d7d941 --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2020-03-06-01-55-14.bpo-39852.QjA1qF.rst @@ -0,0 +1,2 @@ +Edit "Go to line" now clears any selection, preventing accidental deletion. +It also updates Ln and Col on the status bar. |