[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2015-09-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: Right click for context menu in Mac Aqua is fixed in ##24570. -- nosy: +terry.reedy ___ Python tracker ___

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2015-09-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: Sorry, #24801. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-12-18 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Looks fine, David, do you want to commit? -- assignee: ronaldoussoren - r.david.murray nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10404

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-12-18 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Committed to py3k in r87374, 3.1 in r87375, and 2.7 in r87376. -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-12-17 Thread Ned Deily
Ned Deily n...@acm.org added the comment: I think this should be applied for 3.2 (and 2.7 and 3.1). The risk is low and the benefit to OS X IDLE users is great, since without it there is no way to use IDLE's breakpoint facility. -- nosy: +georg.brandl

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-12-08 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Yet another prove of how much Tk sucks on OSX. I'm not too happy about only binding Ctrl+button-1, because users will expect that this is means that button-2 works as well. But if we cannot disable the default button-2 binding we'll

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-12-08 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Oops, 's/prove/proof/' -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10404 ___ ___

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-12-08 Thread Ned Deily
Ned Deily n...@acm.org added the comment: It could be worse. As I noted in Issue10405, the IDLE breakpoint facility appears to be officially undocumented on any platform so it's hard to know what users' expectations are. And there are still Macs out there with only one button. As a side

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-12-07 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: The patch binds the menu to Ctrl-Button-1 (that is, the way you open context menu's on OSX systems with a single button), however rightclick still doens't work (but does an X11-style paste operation). I propose adding an explicit

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-12-07 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Unfortunately, just adding the binding to button-2 does not work because the Tk Text widget already has a documented binding of paste-text to button-2 and this does not override that. With the binding added, I found that the button-2 behavior for

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-11-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Apologies, I had misread your message: I thought the keybinding was wrong but working. Your fix should be committed. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10404

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-11-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Platform consistency is a worthy criterion for changes, but I suspect such a behavior change can’t make it into stable branches. -- nosy: +benjamin.peterson, eric.araujo ___ Python tracker

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-11-20 Thread Ned Deily
Ned Deily n...@acm.org added the comment: IMO, it's not s behavior change, it's a serious bug in the OS X version as released in the python.org installer. Important functionality is broken. -- ___ Python tracker rep...@bugs.python.org

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-11-13 Thread Ned Deily
New submission from Ned Deily n...@acm.org: In several contexts, IDLE binds clicking of the right mouse button to context popup menus, most importantly, to provide the Set Breakpoint and Clear Breakpoint actions in edit windows. On OS X systems, however, one cannot assume there will be more

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-11-13 Thread Ned Deily
Ned Deily n...@acm.org added the comment: The attached patch modifies IDLE on OS X to bind popup menus to Control-Click (of the main or left button), as is commonly done elsewhere in OS X. -- Added file: http://bugs.python.org/file19592/issue10404-idle_no_context_menus.txt

[issue10404] IDLE on OS X popup menus do not work: cannot set/clear breakpoints

2010-11-13 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- nosy: +Bruce.Sherwood, kbk, taleinat ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10404 ___ ___