summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1998-10-22 18:48:45 (GMT)
committerBarry Warsaw <barry@python.org>1998-10-22 18:48:45 (GMT)
commitf72d580d5e7759fd75ab18c238f851cadba248b3 (patch)
tree62e548bbe0681e8e5930159faf45be56c2a481b1 /Tools
parent4ab5ae2ad02a5cbac5a285edab3fe47ea0e409fa (diff)
downloadcpython-f72d580d5e7759fd75ab18c238f851cadba248b3.zip
cpython-f72d580d5e7759fd75ab18c238f851cadba248b3.tar.gz
cpython-f72d580d5e7759fd75ab18c238f851cadba248b3.tar.bz2
sticky should be NSEW to fix pixel weirdness at right edge
Diffstat (limited to 'Tools')
-rw-r--r--Tools/pynche/TypeinViewer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/pynche/TypeinViewer.py b/Tools/pynche/TypeinViewer.py
index d10d2a9..bbecd9b 100644
--- a/Tools/pynche/TypeinViewer.py
+++ b/Tools/pynche/TypeinViewer.py
@@ -27,7 +27,7 @@ class TypeinViewer:
self.__uwtyping.set(optiondb.get('UPWHILETYPE', 0))
# create the gui
self.__frame = Frame(master, relief=RAISED, borderwidth=1)
- self.__frame.grid(row=3, column=1, sticky='NS')
+ self.__frame.grid(row=3, column=1, sticky='NSEW')
# Red
self.__xl = Label(self.__frame, text='Red:')
self.__xl.grid(row=0, column=0, sticky=E)