mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Gridify this widget
This commit is contained in:
parent
b26743ac48
commit
231c8c0895
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue