From f72d580d5e7759fd75ab18c238f851cadba248b3 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Thu, 22 Oct 1998 18:48:45 +0000 Subject: [PATCH] sticky should be NSEW to fix pixel weirdness at right edge --- Tools/pynche/TypeinViewer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/pynche/TypeinViewer.py b/Tools/pynche/TypeinViewer.py index d10d2a9c9bd..bbecd9bb898 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)