List of known bugs

This is a list of some of the known bugs in Pmw. If you fix any of these, please let me (gregm@iname.com) know.

 import Tkinter
 import Pmw
 
 def foo(event):
     print '<Enter> event on text'
 
 root = Pmw.initialise()
 balloon = Pmw.Balloon()
 
 canvas = Tkinter.Canvas()
 canvas.pack()
 
 text1 = canvas.create_text(50, 50, text = 'hello
there')
 
 # As is, the balloon does not appear over the text, but foo
 # is called.  Swap the following two lines and the balloon
 # appears but foo will not be called.
 canvas.tag_bind(text1, "<Enter>", foo)
 balloon.tagbind(canvas, text1, 'text 1 help')
 
 root.mainloop()

Home. Pmw 0.8.5 Maintainer gregm@iname.com. 9 Feb 2001