Hi all, I have code to stipple a rectange created in a canvas. The code works on Windows, but under Mac (using Python 2.5.2), no stippling occurs:
from Tkinter import * tk = Tk() ac = Canvas(tk, bg="red") ac.pack(side=TOP, expand=YES,fill=BOTH) ac.create_rectangle(10, 10, 200, 200, fill="blue", stipple="gray12") tk.mainloop() Does anyone have any idea if this is a known issue, and if so, are there are ways around the problem? Mick O'Donnell _______________________________________________ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinter-discuss