[issue37325] IDLE: fix Query subclass tab focus traversal order

2019-06-18 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue37325] IDLE: fix Query subclass tab focus traversal order

2019-06-18 Thread miss-islington
miss-islington added the comment: 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 -- __

[issue37325] IDLE: fix Query subclass tab focus traversal order

2019-06-18 Thread miss-islington
miss-islington added the comment: 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 -- nosy: +

[issue37325] IDLE: fix Query subclass tab focus traversal order

2019-06-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +14049 pull_request: https://github.com/python/cpython/pull/14211 ___ Python tracker ___ __

[issue37325] IDLE: fix Query subclass tab focus traversal order

2019-06-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +14048 pull_request: https://github.com/python/cpython/pull/14210 ___ Python tracker ___ __

[issue37325] IDLE: fix Query subclass tab focus traversal order

2019-06-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: 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 -- __

[issue37325] IDLE: fix Query subclass tab focus traversal order

2019-06-18 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +14047 stage: test needed -> patch review pull_request: https://github.com/python/cpython/pull/14209 ___ Python tracker __

[issue37325] IDLE: fix Query subclass tab focus traversal order

2019-06-17 Thread Terry J. Reedy
New submission from Terry J. Reedy : 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 overridin