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.

classification
Title: Fix OS X IDLE menu accelerators for Save As and Save Copy
Type: behavior Stage: resolved
Components: IDLE, macOS Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ned.deily Nosy List: georg.brandl, ned.deily, rhettinger
Priority: high Keywords: patch

Created on 2011-01-29 02:52 by ned.deily, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue_osx_menu_accelerators.patch ned.deily, 2011-01-29 02:52
Messages (3)
msg127371 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2011-01-29 02:52
On OS X, the menu accelerators for the Save As and Save Copy As commands are incorrect:

                Are            Should Be

Save            Cmd-S          Cmd-S
Save As..       Cmd-S          Shift-Cmd-S
Save Copy As..  Shift-Cmd-S    Option-Cmd-S

The attached patch fixes that.  It would be good to get into 3.2rc2 as part of the OS X IDLE clean up.
msg127374 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2011-01-29 03:07
Looks fine.
msg127474 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2011-01-29 19:31
Committed in r88236 (with release manager approval) for 3.2rc2, r88237 for 3.1, and r88238 for 2.7.
History
Date User Action Args
2022-04-11 14:57:12adminsetgithub: 55261
2011-01-29 19:31:52ned.deilysetstatus: open -> closed
nosy: georg.brandl, rhettinger, ned.deily
messages: + msg127474

resolution: accepted -> fixed
stage: commit review -> resolved
2011-01-29 03:07:35rhettingersetresolution: accepted

messages: + msg127374
nosy: + rhettinger
2011-01-29 02:52:57ned.deilycreate