summaryrefslogtreecommitdiffstats
path: root/Tools/pynche
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1998-11-18 03:15:19 (GMT)
committerBarry Warsaw <barry@python.org>1998-11-18 03:15:19 (GMT)
commit615a66a5ef4f127e4851344b7f67f1dfde6d2155 (patch)
tree728e41ce0387feba3b374a712b0c8b3629b89c8a /Tools/pynche
parent93990de252ec6901d0e42da3129fc94b6de6a1dc (diff)
downloadcpython-615a66a5ef4f127e4851344b7f67f1dfde6d2155.zip
cpython-615a66a5ef4f127e4851344b7f67f1dfde6d2155.tar.gz
cpython-615a66a5ef4f127e4851344b7f67f1dfde6d2155.tar.bz2
(ChipViewer): Make frame sticky NSEW to fix geometry problem.
Diffstat (limited to 'Tools/pynche')
-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 5bd0bdf..3556f6d 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)