summaryrefslogtreecommitdiffstats
path: root/Tools/pynche/ChipViewer.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1998-09-29 17:36:43 (GMT)
committerBarry Warsaw <barry@python.org>1998-09-29 17:36:43 (GMT)
commitd7d4725dbafc0a2cb46abe64f8fdbf848b8a77e9 (patch)
treea3a70bb7de2201e1d5dc19d57675d9623fafab85 /Tools/pynche/ChipViewer.py
parentf984a6526711513e1af035d2fcee545c51ab51fe (diff)
downloadcpython-d7d4725dbafc0a2cb46abe64f8fdbf848b8a77e9.zip
cpython-d7d4725dbafc0a2cb46abe64f8fdbf848b8a77e9.tar.gz
cpython-d7d4725dbafc0a2cb46abe64f8fdbf848b8a77e9.tar.bz2
Added an extra frame in widget heirarchy in case I want to add
separators later
Diffstat (limited to 'Tools/pynche/ChipViewer.py')
-rw-r--r--Tools/pynche/ChipViewer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/pynche/ChipViewer.py b/Tools/pynche/ChipViewer.py
index b4dfa85..190cf09 100644
--- a/Tools/pynche/ChipViewer.py
+++ b/Tools/pynche/ChipViewer.py
@@ -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)