diff --git a/light9/dmxchanedit.py b/light9/dmxchanedit.py --- a/light9/dmxchanedit.py +++ b/light9/dmxchanedit.py @@ -73,14 +73,18 @@ class Onelevel(tk.Frame): self.changelevel(0.0) def b3down(ev): self.changelevel(1.0) + def b2down(ev): # same thing for now + self.changelevel(1.0) # make the buttons work in the child windows for w in self.winfo_children(): for e,func in (('',b1down), ('',b1motion), ('',b1up), + ('', b2down), ('', b3up), ('', b3down)): + w.bind(e,func) # w.bind(e,lambda ev,e=e: eventtoparent(ev,e))