diff options
author | Barry Warsaw <barry@python.org> | 1998-10-01 14:26:57 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-10-01 14:26:57 (GMT) |
commit | 231c8c0895996e8c8936eef5bd2df84999e9409a (patch) | |
tree | e9975cc564daf89b9ff390fe26f97930dd813ce0 /Tools/pynche | |
parent | b26743ac485b183ba9ae8e727658ac83f8162eba (diff) | |
download | cpython-231c8c0895996e8c8936eef5bd2df84999e9409a.zip cpython-231c8c0895996e8c8936eef5bd2df84999e9409a.tar.gz cpython-231c8c0895996e8c8936eef5bd2df84999e9409a.tar.bz2 |
Gridify this widget
Diffstat (limited to 'Tools/pynche')
-rw-r--r-- | Tools/pynche/TypeinViewer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/pynche/TypeinViewer.py b/Tools/pynche/TypeinViewer.py index 2da25af..83a700f 100644 --- a/Tools/pynche/TypeinViewer.py +++ b/Tools/pynche/TypeinViewer.py @@ -9,8 +9,8 @@ class TypeinViewer: self.__hexp = BooleanVar() self.__uwtyping = BooleanVar() # create the gui - self.__frame = Frame(parent, relief=GROOVE, borderwidth=2) - self.__frame.pack(side=RIGHT) + self.__frame = Frame(parent) #, relief=GROOVE, borderwidth=2) + self.__frame.grid(row=3, column=1, sticky='NS') # Red self.__xl = Label(self.__frame, text='Red:') self.__xl.grid(row=0, column=0, sticky=E) |