I'm running ActivePython 2.1, build 210, and Tkinter radio buttons are
appearing with the text but not the actual button widget. This worked
in 2.0 (works in Linux, too).
1. Is this a known bug?
2. When will a corrected version be available?
Here's a repro case:
from Tkinter import *
r = Tk()
v = IntVar()
f = Frame(r)
f.pack()
Radiobutton(f, text = 'A', variable = v, value = 0).pack()
Radiobutton(f, text = 'B', variable = v, value = 1).pack()
r.mainloop()
--
Bob Kline
mailto:[EMAIL PROTECTED]
http://www.rksystems.com
_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/activepython