mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
(ChipViewer): Make frame sticky NSEW to fix geometry problem.
This commit is contained in:
parent
93990de252
commit
615a66a5ef
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class ChipViewer:
|
|||
def __init__(self, switchboard, master=None):
|
||||
self.__sb = switchboard
|
||||
self.__frame = Frame(master, relief=RAISED, borderwidth=1)
|
||||
self.__frame.grid(row=3, column=0, ipadx=5)
|
||||
self.__frame.grid(row=3, column=0, ipadx=5, sticky='NSEW')
|
||||
# create the chip that will display the currently selected color
|
||||
# exactly
|
||||
self.__sframe = Frame(self.__frame)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue