Dear All,
How can I reset the background color of widget to the default one? Imagine that I create an entry widget with a specific background color i.e. white e=Entry(root, background="white") e.pack() ... and at a later state I want to configure the color to the default system one (equivalent like when I create it: e=Entry(root)) I've tried e["background"] = "" # didn't work e["background"] = None # nothing del e["background"] # neither Cheers Vasilis
_______________________________________________ Tkinter-discuss mailing list [email protected] http://mail.python.org/mailman/listinfo/tkinter-discuss
