From: Barry Warsaw Date: Wed, 18 Nov 1998 03:15:19 +0000 (+0000) Subject: (ChipViewer): Make frame sticky NSEW to fix geometry problem. X-Git-Tag: v1.5.2b1~217 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=615a66a5ef4f127e4851344b7f67f1dfde6d2155;p=python (ChipViewer): Make frame sticky NSEW to fix geometry problem. --- diff --git a/Tools/pynche/ChipViewer.py b/Tools/pynche/ChipViewer.py index 5bd0bdfa02..3556f6d8e4 100644 --- a/Tools/pynche/ChipViewer.py +++ b/Tools/pynche/ChipViewer.py @@ -68,7 +68,7 @@ class ChipViewer: def __init__(self, switchboard, master=None): self.__sb = switchboard self.__frame = Frame(master, relief=RAISED, borderwidth=1) - self.__frame.grid(row=3, column=0, ipadx=5) + self.__frame.grid(row=3, column=0, ipadx=5, sticky='NSEW') # create the chip that will display the currently selected color # exactly self.__sframe = Frame(self.__frame)