diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-06-18 21:08:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-18 21:08:24 (GMT) |
commit | 54cf2e0780ca137dd9abea5d3d974578ce0c18a9 (patch) | |
tree | 4bee73d0e7b3356f413997c7c042019a9cb8ad89 /Lib/idlelib/idle_test | |
parent | d287215df5c967da5a9141c1182d240bdb46ec4a (diff) | |
download | cpython-54cf2e0780ca137dd9abea5d3d974578ce0c18a9.zip cpython-54cf2e0780ca137dd9abea5d3d974578ce0c18a9.tar.gz cpython-54cf2e0780ca137dd9abea5d3d974578ce0c18a9.tar.bz2 |
bpo-37325: Fix focus traversal for 2 IDLE dialogs (#14209)
Tab now moves focus across and down for Help Source and Custom Run.
Diffstat (limited to 'Lib/idlelib/idle_test')
-rw-r--r-- | Lib/idlelib/idle_test/htest.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/htest.py b/Lib/idlelib/idle_test/htest.py index 6ce8cc8..20e5e90 100644 --- a/Lib/idlelib/idle_test/htest.py +++ b/Lib/idlelib/idle_test/htest.py @@ -110,10 +110,11 @@ _color_delegator_spec = { CustomRun_spec = { 'file': 'query', - 'kwds': {'title': 'Custom Run Args', + 'kwds': {'title': 'Customize query.py Run', '_htest': True}, - 'msg': "Enter with <Return> or [Ok]. Print valid entry to Shell\n" + 'msg': "Enter with <Return> or [Run]. Print valid entry to Shell\n" "Arguments are parsed into a list\n" + "Mode is currently restart True or False\n" "Close dialog with valid entry, <Escape>, [Cancel], [X]" } |