# HG changeset patch # User drewp # Date 1026200189 0 # Node ID 001646cd5349ee6fda443ddfc75b3a52406a164f # Parent a4d000f759b4d1fb0f55a6b7e882e1083fdfd372 all mousewheel events everywhere will now pass up the tree to be caught by all mousewheel events everywhere will now pass up the tree to be caught by higher widgets. if things get slow, this might be the problem diff -r a4d000f759b4 -r 001646cd5349 light8/rsn.py --- a/light8/rsn.py Tue Jul 09 07:35:57 2002 +0000 +++ b/light8/rsn.py Tue Jul 09 07:36:29 2002 +0000 @@ -27,8 +27,12 @@ mr_lightboard = Lightboard(root,parportdmx,DUMMY) signal(SIGINT, mr_lightboard.quit) + + bindkeys(root,'', mr_lightboard.quit) +root.bind_class("all","",lambda ev: eventtoparent(ev,"")) +root.bind_class("all","",lambda ev: eventtoparent(ev,"")) root.mainloop() # Receiver switches main