summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/NEWS.txt
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2020-03-08 18:32:42 (GMT)
committerGitHub <noreply@github.com>2020-03-08 18:32:42 (GMT)
commit2522db11df102be3baf25ce9e816ebe8ffdb7fcc (patch)
tree786501887326cf15cfb7b7b185ae6b838267ec6b /Lib/idlelib/NEWS.txt
parentc580981ba01c4d9f721dbdd88208ba37704e0217 (diff)
downloadcpython-2522db11df102be3baf25ce9e816ebe8ffdb7fcc.zip
cpython-2522db11df102be3baf25ce9e816ebe8ffdb7fcc.tar.gz
cpython-2522db11df102be3baf25ce9e816ebe8ffdb7fcc.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.
Diffstat (limited to 'Lib/idlelib/NEWS.txt')
-rw-r--r--Lib/idlelib/NEWS.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
index 0651b3d..1e6cd45 100644
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -3,6 +3,9 @@ Released on 2020-10-05?
======================================
+bpo-39852: Edit "Go to line" now clears any selection, preventing
+accidental deletion. It also updates Ln and Col on the status bar.
+
bpo-39781: Selecting code context lines no longer causes a jump.
bpo-39663: Add tests for pyparse find_good_parse_start().