How to make a separator?

Fredrik Lundh fredrik at pythonware.com
Wed May 2 12:19:34 EDT 2001


Nicola S <stain at prigioniero.it> wrote:
> Hi, I'd like to put a line separator between an OK button and the rest of the
> window.

how about something like:

sep = Frame(master, relief=SUNKEN, height=2)
sep.pack(fill=X, pady=5)

Cheers /F





More information about the Python-list mailing list