[issue18506] DISABLEd Tkinter.Listbox still fires <> for mouse click

2013-07-19 Thread Kaushik Ghose
New submission from Kaushik Ghose: Run the script below. Clicking on the window will fire off <> events even though the widget is disabled. Keyboard actions do not fire this event. #-- Test file -- import Tkinter as tki def selection_changed(event): print 'Selection changed' root = tki.Tk

[issue18506] DISABLEd Tkinter.Listbox still fires <> for mouse click

2013-07-19 Thread Kaushik Ghose
Kaushik Ghose added the comment: Thanks for your response. Best -Kaushik -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue18506] DISABLEd Tkinter.Listbox still fires <> for mouse click

2013-07-19 Thread Ned Deily
Ned Deily added the comment: The behavior you are reporting is in the Tk listbox widget. Python's Tkinter is a fairly thin wrapper around Tk and its widgets. I believe you will see the same behavior if you translate your Python code snippet to an equivalent Tcl wish script. If you think the