changeset: 98192:51b2b1a821b7 branch: 3.4 parent: 98187:a8dc0b6e2b63 user: Terry Jan Reedy date: Tue Sep 22 21:10:27 2015 -0400 files: Lib/idlelib/EditorWindow.py Lib/idlelib/PyShell.py description: Issue #24570: Right-click for context menus now work on Mac Aqual also. Patch by Mark Roseman. diff -r a8dc0b6e2b63 -r 51b2b1a821b7 Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py Tue Sep 22 17:35:24 2015 -0700 +++ b/Lib/idlelib/EditorWindow.py Tue Sep 22 21:10:27 2015 -0400 @@ -175,13 +175,13 @@ if macosxSupport.isAquaTk(): # Command-W on editorwindows doesn't work without this. text.bind('<>', self.close_event) - # Some OS X systems have only one mouse button, - # so use control-click for pulldown menus there. - # (Note, AquaTk defines <2> as the right button if - # present and the Tk Text widget already binds <2>.) + # Some OS X systems have only one mouse button, so use + # control-click for popup context menus there. For two + # buttons, AquaTk defines <2> as the right button, not <3>. text.bind("",self.right_menu_event) + text.bind("<2>", self.right_menu_event) else: - # Elsewhere, use right-click for pulldown menus. + # Elsewhere, use right-click for popup menus. text.bind("<3>",self.right_menu_event) text.bind("<>", self.cut) text.bind("<>", self.copy) diff -r a8dc0b6e2b63 -r 51b2b1a821b7 Lib/idlelib/PyShell.py --- a/Lib/idlelib/PyShell.py Tue Sep 22 17:35:24 2015 -0700 +++ b/Lib/idlelib/PyShell.py Tue Sep 22 21:10:27 2015 -0400 @@ -1547,6 +1547,14 @@ root.withdraw() flist = PyShellFileList(root) macosxSupport.setupApp(root, flist) + + if macosxSupport.isAquaTk(): + # There are some screwed up <2> class bindings for text + # widgets defined in Tk which we need to do away with. + # See issue #24801. + root.unbind_class('Text', '') + root.unbind_class('Text', '') + root.unbind_class('Text', '<>') if enable_edit: if not (cmd or script):