sticky should be NSEW to fix pixel weirdness at right edge

This commit is contained in:
Barry Warsaw 1998-10-22 18:48:45 +00:00
parent 4ab5ae2ad0
commit f72d580d5e
1 changed files with 1 additions and 1 deletions

View File

@ -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)