diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2020-02-28 18:22:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-28 18:22:55 (GMT) |
commit | c705fd1e89ccb8f6d414ec817b4616546147d877 (patch) | |
tree | 8b2161ff8c811747c6c3aa17d281c00dc15fe4d3 /Lib/idlelib/NEWS.txt | |
parent | 4f17c5cd9a1ec50fe8de7ef68c39220a01a862cb (diff) | |
download | cpython-c705fd1e89ccb8f6d414ec817b4616546147d877.zip cpython-c705fd1e89ccb8f6d414ec817b4616546147d877.tar.gz cpython-c705fd1e89ccb8f6d414ec817b4616546147d877.tar.bz2 |
bpo-39781: Do not jump when select in IDLE codecontext (GH-18683)
Previously, the button-up part of selecting with a mouse was treated as a click
that meant 'jump' to this line, which modified the context and undid the selection
Diffstat (limited to 'Lib/idlelib/NEWS.txt')
-rw-r--r-- | Lib/idlelib/NEWS.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 021e1f7..0651b3d 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,6 +3,8 @@ Released on 2020-10-05? ====================================== +bpo-39781: Selecting code context lines no longer causes a jump. + bpo-39663: Add tests for pyparse find_good_parse_start(). bpo-39600: Remove duplicate font names from configuration list. |