This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2019年06月18日 02:07 by terry.reedy, last changed 2022年04月11日 14:59 by admin. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 14209 | merged | terry.reedy, 2019年06月18日 20:44 | |
| PR 14210 | merged | miss-islington, 2019年06月18日 21:08 | |
| PR 14211 | merged | miss-islington, 2019年06月18日 21:10 | |
| Messages (4) | |||
|---|---|---|---|
| msg345940 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2019年06月18日 02:07 | |
query.Query creates a popup with entry and ok/cancel buttons, in that order. Tabbing moves from the entry in that order. Currently, subclasses that add widgets add them after the 3 above, so they follow Cancel in the tab order. They do this by overriding create_widgets and initially calling super.create_widgets. Added widgets should follow the entry box and precede the exit buttons. To do this, they should be created in between. Proposed solution: create_widgets calls 'extra_widgets' (pass for Query) after creating the Entry. Subclasses override to add widgets. |
|||
| msg346009 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2019年06月18日 21:08 | |
New changeset 54cf2e0780ca137dd9abea5d3d974578ce0c18a9 by Terry Jan Reedy in branch 'master': bpo-37325: Fix focus traversal for 2 IDLE dialogs (#14209) https://github.com/python/cpython/commit/54cf2e0780ca137dd9abea5d3d974578ce0c18a9 |
|||
| msg346011 - (view) | Author: miss-islington (miss-islington) | Date: 2019年06月18日 21:26 | |
New changeset 44d46e368e6c7cc91fa99a2bfaff544dec7fb04d by Miss Islington (bot) in branch '3.7': bpo-37325: Fix focus traversal for 2 IDLE dialogs (GH-14209) https://github.com/python/cpython/commit/44d46e368e6c7cc91fa99a2bfaff544dec7fb04d |
|||
| msg346012 - (view) | Author: miss-islington (miss-islington) | Date: 2019年06月18日 21:36 | |
New changeset b626b113aee655e273b68eb1edb980f9729c0833 by Miss Islington (bot) in branch '3.8': bpo-37325: Fix focus traversal for 2 IDLE dialogs (GH-14209) https://github.com/python/cpython/commit/b626b113aee655e273b68eb1edb980f9729c0833 |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:59:16 | admin | set | github: 81506 |
| 2019年06月18日 22:40:25 | terry.reedy | set | status: open -> closed resolution: fixed stage: patch review -> resolved |
| 2019年06月18日 21:36:12 | miss-islington | set | messages: + msg346012 |
| 2019年06月18日 21:26:23 | miss-islington | set | nosy:
+ miss-islington messages: + msg346011 |
| 2019年06月18日 21:10:01 | miss-islington | set | pull_requests: + pull_request14049 |
| 2019年06月18日 21:08:40 | miss-islington | set | pull_requests: + pull_request14048 |
| 2019年06月18日 21:08:28 | terry.reedy | set | messages: + msg346009 |
| 2019年06月18日 20:44:16 | terry.reedy | set | keywords:
+ patch stage: test needed -> patch review pull_requests: + pull_request14047 |
| 2019年06月18日 02:07:11 | terry.reedy | create | |