(ChipViewer): Make frame sticky NSEW to fix geometry problem.

This commit is contained in:
Barry Warsaw 1998-11-18 03:15:19 +00:00
parent 93990de252
commit 615a66a5ef
1 changed files with 1 additions and 1 deletions

View File

@ -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)