mirror of
https://github.com/python/cpython.git
synced 2025-10-14 18:59:46 +00:00
Issue #27262: move Aqua unbinding code, which enable context menus, to maxosx.
This commit is contained in:
parent
d03ed8a4d0
commit
24f3a1829f
2 changed files with 11 additions and 8 deletions
|
@ -206,6 +206,16 @@ def overrideRootMenu(root, flist):
|
||||||
# remove redundant "IDLE Help" from menu
|
# remove redundant "IDLE Help" from menu
|
||||||
del mainmenu.menudefs[-1][1][0]
|
del mainmenu.menudefs[-1][1][0]
|
||||||
|
|
||||||
|
def fixb2context(root):
|
||||||
|
'''Removed bad AquaTk Button-2 (right) and Paste bindings.
|
||||||
|
|
||||||
|
They prevent context menu access and seem to be gone in AquaTk8.6.
|
||||||
|
See issue #24801.
|
||||||
|
'''
|
||||||
|
root.unbind_class('Text', '<B2>')
|
||||||
|
root.unbind_class('Text', '<B2-Motion>')
|
||||||
|
root.unbind_class('Text', '<<PasteSelection>>')
|
||||||
|
|
||||||
def setupApp(root, flist):
|
def setupApp(root, flist):
|
||||||
"""
|
"""
|
||||||
Perform initial OS X customizations if needed.
|
Perform initial OS X customizations if needed.
|
||||||
|
@ -227,3 +237,4 @@ def setupApp(root, flist):
|
||||||
hideTkConsole(root)
|
hideTkConsole(root)
|
||||||
overrideRootMenu(root, flist)
|
overrideRootMenu(root, flist)
|
||||||
addOpenEventSupport(root, flist)
|
addOpenEventSupport(root, flist)
|
||||||
|
fixb2context()
|
||||||
|
|
|
@ -1548,14 +1548,6 @@ def main():
|
||||||
flist = PyShellFileList(root)
|
flist = PyShellFileList(root)
|
||||||
macosx.setupApp(root, flist)
|
macosx.setupApp(root, flist)
|
||||||
|
|
||||||
if macosx.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', '<B2>')
|
|
||||||
root.unbind_class('Text', '<B2-Motion>')
|
|
||||||
root.unbind_class('Text', '<<PasteSelection>>')
|
|
||||||
|
|
||||||
if enable_edit:
|
if enable_edit:
|
||||||
if not (cmd or script):
|
if not (cmd or script):
|
||||||
for filename in args[:]:
|
for filename in args[:]:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue