Added an extra frame in widget heirarchy in case I want to add

separators later
This commit is contained in:
Barry Warsaw 1998-09-29 17:36:43 +00:00
parent f984a65267
commit d7d4725dba
2 changed files with 7 additions and 4 deletions

View file

@ -53,7 +53,7 @@ class ChipViewer:
def __init__(self, switchboard, parent=None):
self.__sb = switchboard
self.__frame = Frame(parent)
self.__frame.pack()
self.__frame.pack(expand=YES, fill=BOTH)
# create the chip that will display the currently selected color
# exactly
self.__sframe = Frame(self.__frame)