This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author garyrxx
Recipients
Date 2003-11-02.00:37:18
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The following program (by Michael Peuser)  crashes as 
soon as the mouse wheel is moved. See my post to 
c.l.p. on Oct 29.

Gary Richardson

#-------------------------
from Tkinter import *
def _onMouseWheel(event):
    print event

root = Tk()
root.bind('<MouseWheel>',_onMouseWheel)
root.mainloop()
History
Date User Action Args
2007-08-23 14:17:59adminlinkissue834351 messages
2007-08-23 14:17:59admincreate