[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-07-21 Thread Ned Deily
Ned Deily added the comment: A fix for this problem has been released in ActiveTcl 8.5.10.1 as of 2011-07-21. -- resolution: -> out of date stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-07-17 Thread Ned Deily
Ned Deily added the comment: There is now a patch in the Tcl pipeline for this problem. See: http://permalink.gmane.org/gmane.comp.lang.tcl.mac/6965 -- ___ Python tracker ___ _

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-03-17 Thread Ned Deily
Ned Deily added the comment: The actual unwanted event is being generated as a result of the menu "add command" accelerator. You can see that by playing with Wish. set w .menu catch {destroy $w} toplevel $w wm title $w "Menu Shift" menu $w.menu -tearoff 0 set m $w.menu.basic $w.menu add casca

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-03-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: It's getting weirder by the minute. Not only do we get multiple events, we also get additional keybindings we never asked for. *Cmd+Ctrl+S also works as save as *Cmd+Shift+S gives two save as events (as was already known) --

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-03-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: The double execution is definitely caused by having multiple event, one of which is a real keyboard event and the other one is a ghost one. I'm seeing calls to save_as with 2 events: the first is a ghost event, with type 35 and '??' as the keycode and keysym

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-03-15 Thread Ned Deily
Ned Deily added the comment: Another data point: the key binding for Undo (Shift-Command-Z) exhibits similar behavior, i.e. it is executed twice. And trying with Python 2.7.1 linked with A/S Tk 8.5 and with the old key bindings where Shift-Command-S is Save Copy rather than Save As, it appea

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-03-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: This is not caused by unwanted interaction with Tk's default bindings, changing the save-as bindings to Shift+Cmd+M doesn't "fix" the issue. It seems that the save event is generated twice, for reasons I don't yet understand (I'm definitely not enough of a T

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-03-15 Thread Ronald Oussoren
Changes by Ronald Oussoren : Removed file: http://bugs.python.org/file21218/issue11055.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-03-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: Please ignore the patch, it doesn't work after all. It was too good to be true after all. -- nosy: -kbk ___ Python tracker ___

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-03-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: To reproduce install ActiveState Tcl 8.5.9 and then build python using: ../configure --enable-framework --enable-universalsdk=/ --with-universal-archs=intel MACOSX_DEPLOYMENT_TARGET=10.6 Both 3.2 and 3.3 fail can be used. Install the framework and then open

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-01-28 Thread Ned Deily
New submission from Ned Deily : With the menu accelerators corrected (as patched in Issue10940), IDLE 3.2 with Cocoa Tk 8.5 opens two Save As dialog windows instead of one. This doesn't happen when the Save As item is selected with the mouse nor does it happen with Carbon Tk 8.4. The simple